Log in
Log into community
Find answers from the community
View all posts
Related posts
Did this answer your question?
π
π
π
Powered by
Hall
Inactive
Updated 3 months ago
0
Follow
Chat bot
Chat bot
Inactive
0
Follow
S
Shan
2 years ago
Β·
I have a Pinecone index with a large amount of domain-specific data and I want to create a GPT4 bot that answers questions based on it. Are there any tutorials or open source projects I could use as a starting point?
L
1 comment
Share
Open in Discord
L
Logan M
2 years ago
Since you have an existing pinecone index, you could start with a pinecone vector index.
There's an example notebook here:
Just pass in an empty array
[]
instead of any actual documents
https://github.com/jerryjliu/llama_index/blob/main/examples/vector_indices/PineconeIndexDemo.ipynb
Then, you could use that index as a tool in langchain. A few ways to do that
https://gpt-index.readthedocs.io/en/latest/guides/tutorials/building_a_chatbot.html
That guide uses multiple indexes in a graph, but you could skip that part and use a single pinecone index.
https://github.com/jerryjliu/llama_index/blob/main/examples/langchain_demo/LangchainDemo.ipynb
This one uses the index as a tool in langchain more directly
Add a reply
Sign up and join the conversation on Discord
Join on Discord