Find answers from the community

Updated 2 months ago

Hey I was checking the colab doc

Hey! I was checking the colab doc posted on Twitter, analyzing the Uber SEC 10-k. This is something really similar to what I need. Which OpenAI model is being used here? I saw examples of having to manually set model_name in order to use gpt-3, but here is probably using davinci. Why?

Is it possible to build a chat system across multiple docs + gpt trained data? All my tests seems to consult only my index.
Attachment
image.png
j
D
4 comments
by default we're using text-davinci-003 by default!
you can change the model to suit your needs (you will need to use ChatOpenAI from langchain's llm class if you want to use ChatGPT)
re: building a chat system, yes! take a look at this tweet thread yesterday https://twitter.com/jerryjliu0/status/1633516907960868865?s=20 - you can choose to explicitly use the LLM knowledge instead of docs with our "empty " index
cool, I'll try it tonight. Thank you!
Add a reply
Sign up and join the conversation on Discord