Skip to content

Commit 4fd2dcd

Browse files
rpranabPranab Rajbhandari
and
Pranab Rajbhandari
authored
672 release notes (#1583)
* changes for 670 release * removed images * changes for 672 release notes * updated genai lib versions * changed gif * ssl changes --------- Co-authored-by: Pranab Rajbhandari <pranabrajbhandari@Pranabs-MacBook-Pro.local>
1 parent 7c6f901 commit 4fd2dcd

File tree

6 files changed

+90
-1
lines changed

6 files changed

+90
-1
lines changed

docs/_includes/docs-annotation-pagination.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</li>
1111
</ul>
1212
<ul class="pagination owl-carousel pagination_big">
13+
<li><a href="release_notes_6_7_2">6.7.2</a></li>
1314
<li><a href="release_notes_6_7_0">6.7.0</a></li>
1415
<li><a href="release_notes_6_6_0">6.6.0</a></li>
1516
<li><a href="release_notes_6_5_1">6.5.1</a></li>
-149 KB
Loading
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
layout: docs
3+
header: true
4+
seotitle: Generative AI Lab | John Snow Labs
5+
title: Generative AI Lab Release Notes 6.7.2
6+
permalink: /docs/en/alab/annotation_labs_releases/release_notes_6_7_2
7+
key: docs-licensed-release-notes
8+
modify_date: 2024-08-25
9+
show_nav: true
10+
sidebar:
11+
nav: annotation-lab
12+
---
13+
14+
<div class="h3-box" markdown="1">
15+
16+
## 6.7.2
17+
18+
Release date: **10-04-2024**
19+
20+
### Improvements:
21+
- Annotation Guidelines Display: Now, users can view annotation guidelines by simply clicking on the label, making the annotation process more intuitive and user-friendly.
22+
- Expanded De-identification Model Support: Added compatibility with additional de-identification models to enhance flexibility in handling sensitive data.
23+
24+
### Bug Fixes:
25+
- NER Model Logs: Resolved an issue where error logs from the playground server and dependent embeddings were not automatically downloaded for Named Entity Recognition (NER) models.
26+
- Completions Auto-Save: Fixed a bug that prevented completions from being auto-saved and submitted during task submission, ensuring no work is lost.
27+
- Group Name Deletion: The "Esc" key now correctly removes the group name delete confirmation pop-up, providing a smoother user experience.
28+
- Training Page View History: Addressed an error where users encountered an issue when clicking the "View History" button on the Training Page.
29+
- Annotation Instruction Edit Time: The editing time for annotation instructions is now accurately reflected in the system, ensuring proper time tracking for changes.
30+
31+
</div><div class="prev_ver h3-box" markdown="1">
32+
33+
## Versions
34+
35+
</div>
36+
37+
{%- include docs-annotation-pagination.html -%}

docs/en/alab/install.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,55 @@ Now, to access the Generative AI Lab, you go to the CloudFront URL and log in wi
232232

233233
</div><div class="h3-box" markdown="1">
234234

235+
236+
### Enabling SSL
237+
#### Requirements:
238+
- Fullchain certificate
239+
- Private key used to sign the certificate
240+
241+
For ease of documenting the process we are going to use the following notations (please replace with your actual values in the process):
242+
243+
- fullchain.pem – name of the fullchain certificate file
244+
- privkey.pem – key used to sign the certificate
245+
- demo.example.com – the domain used for genailab app
246+
247+
For marketplace instance, the installer scripts files have to be downloaded (if installed with the the scripts, the files are already on the server and this step can be skipped):
248+
249+
```bash
250+
wget -q https://s3.amazonaws.com/auxdata.johnsnowlabs.com/annotationlab/annotationlab-"$version".tar.gz
251+
```
252+
253+
Extract the archive and copy fullchain.pem and privkey.pem into artifacts directory.
254+
255+
Create Kubernetes secret to be used by the ingress for SSL termination:
256+
257+
```bash
258+
kubectl create secret tls demo.example.com --cert=fullchain.pem --key=privkey.pem
259+
```
260+
261+
Edit the annotationlab-updater.sh in the same directory and add the following lines in the end of the script (helm command extra parameters):
262+
263+
```bash
264+
--set ingress.enabled=true \
265+
--set ingress.defaultBackend=false \
266+
--set ingress.hosts[0].host='demo.example.com' \
267+
--set ingress.hosts[0].path='/' \
268+
--set ingress.tls[0].hosts[0]='demo.example.com' \
269+
--set ingress.tls[0].secretName=demo.example.com
270+
```
271+
272+
Note: If a self-signed certificate or any other type of internal certificates (not signed by any public CA) are used, an extra parameter is required for annotationlab-updater.sh:
273+
274+
```bash
275+
--set ingress.sslVerify=false
276+
```
277+
278+
After editing the script, run it to enable SSL:
279+
280+
```bash
281+
bash -x annotationlab-updater.sh
282+
```
283+
235284
## Azure Marketplace
236285

237286
Visit the [product page on Azure Marketplace](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/johnsnowlabsinc1646051154808.gen_ai_lab?tab=Overview) and follow these steps. Generative AI Lab offers a one-click deployment within your security perimeter using Azure Kubernetes Service (AKS), a fully managed Kubernetes solution that simplifies the deployment, management, and scaling of containerized applications.

docs/en/alab/release_notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ A new ability to "Submit completions without Saving" can be enabled on the **Adv
225225
</div>
226226

227227
<ul class="pagination owl-carousel pagination_big">
228+
<li><a href="annotation_labs_releases/release_notes_6_7_2">6.7.2</a></li>
228229
<li class="active"><a href="annotation_labs_releases/release_notes_6_7_0">6.7.0</a></li>
229230
<li><a href="annotation_labs_releases/release_notes_6_6_0">6.6.0</a></li>
230231
<li><a href="annotation_labs_releases/release_notes_6_5_1">6.5.1</a></li>

docs/en/alab/version.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ The table below displays the bundled version of NLP Libraries associated with va
2929
| 5.9.0 - 5.9.1 | 5.2.2 | 5.2.1 | 5.1.2 | 1.0.0 | 1.0.0 | 3.4.0 |
3030
| 5.9.2 - 5.9.3 | 5.3.1 | 5.3.0 | 5.3.0 | 1.0.0 | 1.0.0 | 3.4.0 |
3131
| 6.0.0 - 6.2.1 | 5.3.1 | 5.3.1 | 5.3.0 | 1.0.0 | 1.0.0 | 3.4.0 |
32-
| 6.3.0 - latest | 5.3.2 | 5.3.2 | 5.3.2 | 1.0.0 | 1.0.0 | 3.4.0 |
32+
| 6.3.0 - 6.6.2 | 5.3.2 | 5.3.2 | 5.3.2 | 1.0.0 | 1.0.0 | 3.4.0 |
33+
| 6.7.0 - latest | 5.4.0 | 5.4.0 | 5.4.0 | 1.0.0 | 1.0.0 | 3.4.0 |

0 commit comments

Comments
 (0)