You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(helm): fix spelling and grammar errors in README documentation
- Correct "authentification" to "authentication"
- Fix "entreprise" to "enterprise" and "intégrate" to "integrate"
- Improve grammar: "own section" to "their own section"
- Add comma in "changed and the following" for better readability
- Clarify "all roles" usage with article "the"
- Add new section documenting tiktoken cache solution for on-premise deployments
- Document global.truststoreContainerImage configuration in values table
- Update truststore container image reference in bot_api deployment
Copy file name to clipboardExpand all lines: charts/tock/README.md
+48-6Lines changed: 48 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ This chart helps to setup a Tock environnement.
37
37
38
38
## Sections
39
39
40
-
This creates values, but sectioned into own section tables if a section comment is provided.
40
+
This creates values, but sectioned into their own section tables if a section comment is provided.
41
41
42
42
## Values
43
43
@@ -244,6 +244,8 @@ This creates values, but sectioned into own section tables if a section comment
244
244
| global.mongodbPort | string |`"27017"`| If mongoDB is not deployed by the chart, the mongodb port |
245
245
| global.mongodbUrls | string |`"mongodb://myuser:[email protected]:27017,xx.xx.xx.xx:27017,xx.xx.xx.xx:27017/mydb?replicaSet=rs0"`| If mongoDB is not deployed by the chart, you can use this to connect to an external mongoDB mongodbUrls: mongodb://myuser:mypass@fqdn-node1:27017,fqdn-node2:27017,fqdn-node3:27017/mydb?replicaSet=rs0 |
246
246
| global.mongodbcheckfqdn | string |`"fqdn-node1"`| If mongoDB is not deployed by the chart, the node use to check if the mongodb is up |
This will create a Secret named `corp-root-ca` with the certificate file `corp-root-ca.crt`.
489
491
492
+
## Solve langchain and tiktoken issues on on-premise deployments
493
+
494
+
If you are using OpenAI as LLM, langchain needs tiktoken as tokenizer. Langchain tries to download tiktoken base if he is not present in the local cache.
495
+
To solve the issue with tiktoken on on-premise deployments without internet access, you can provide a local cache through a dedicated initcontainer.
496
+
497
+
You can get the tiktoken base files from the following URL:
This will create a Secret named `corp-root-ca` with the certificate file `corp-root-ca.crt`.
191
191
192
+
## Solve langchain and tiktoken issues on on-premise deployments
193
+
194
+
If you are using OpenAI as LLM, langchain needs tiktoken as tokenizer. Langchain tries to download tiktoken base if he is not present in the local cache.
195
+
To solve the issue with tiktoken on on-premise deployments without internet access, you can provide a local cache through a dedicated initcontainer.
196
+
197
+
You can get the tiktoken base files from the following URL:
0 commit comments