I want to create a continuously improving legal AI. My idea is to constantly feed ChatGPT-4 legal knowledge so that it keeps learning. Is this possible? If it can’t be done with ChatGPT-4, is there another way to achieve this?
Doubt it, it can’t even remember details I gave it 10 minutes earlier.
The possibility of making an app (since you tag this under API) that can continuously gather knowledge is possible. Basically, you just embed all new knowledge and store the resulting vector data in a database. Then using RAG (Retrieval Augmented Generation), you can query the AI and search for result from the stored knowledge base.
Tldr how to use ai to build knowledge base for ai?
Could you provide more info, or it’s that straightforward. I’m in a position where I want to create an app (or even use assistant if that’s easier) where I would provide data verbally and than ai would organize that data, check the current knowledge regarding such data and update it if needed.
Is something like this possible, can anyone give some tips?
Tldr how to use ai to build knowledge base for ai?
- Basically, using embeddings to send context documents in question prompts:
- “In Context Learning”
- “RAG” = “Retrieval Augmented Generation”
- What is RAG?
Then, when you understand what you need to do:
GPT4 Tutorial: How to chat with multiple pdf files - The Chat Completion Process (R.A.G. / Embeddings)