|
|
|
|
|
by fbrncci
1147 days ago
|
|
Pretty easy, take a look at Langchain tutorials on YouTube. Basically you give it a set of documents, split these into smaller documents and then store these in a vector database and create embeddings (OpenAI, Jina, etc). Then when you interface with OpenAI on GPT-3 or GPT-4, you interface with those documents and embeddings and produce an answer based on the document set (or very near to it). It takes some practice, but with some repetitions you could code this together from scratch within 5-10 minutes. This channel on YouTube thought me within less than 2 days: - https://www.youtube.com/@DataIndependent |
|