-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is KB_ENDPOINT? #21
Comments
Hi, the KB (RAG chatbots) is actually only available on the SAAS version. It will come to the open source version for the end of April 🙏🏻 Andrea |
Hey @globalexport, the KB_ENDPOINT is used to point to the tiledesk-llm project. |
Thanks for the update! Now I understand it's a kind of API for the a pinecone vector db. |
It would be neat to see the tiledesk-llm one day working together with a local vector db like chroma or similar. Sometimes there are use cases which do not allow to store data on an external host. |
Can you please share more details about your configuration? Thank you |
Hey @vi1world, basically in your docker-compose file you need to add these lines under the service: tilellm:
container_name: tilellm
image: tiledesk/tiledesk-backend-llm:latest
build: ./tiledesk-llm/
ports:
- "8000:8000"
environment:
- PINECONE_API_KEY={YOUR_API_KEY}
- PINECONE_INDEX={YOUR_INDEX_NAME}
- PINECONE_TEXT_KEY={TEXT_KEY} You'll need a account on Pinecone to use the LLM Note: The last time that I used this was 4 months ago so I don't know if it had any changes, but give it a try! |
Another thing that I forgot is that you'll need to setup the keys On the server environment, set these variables: - KB_ENDPOINT={KB_URL}
- KB_ENDPOINT_QA={KB_URL}
- KB_ENDPOINT_TRAIN={KB_URL} They receive a url that probably is |
Thank you very much. |
Hi!
What service url is expected in
KB_ENDPOINT
to scrape? I do not find documentation about it.Thank you!
The text was updated successfully, but these errors were encountered: