Hello,
I’m looking to integrate the OpenAI API with my web app in a more advanced way. I’ve already implemented it using Retrieval-Augmented Generation (RAG) and fine-tuning, but now I want to take it a step further.
I want to teach ChatGPT everything about my web app—its features, why and when they were added, how long they took to implement, and other details (organized by tasks). This includes a large amount of data: features are documented across hundreds of tasks and thousands of comments.
The goal is for ChatGPT to have complete and logical, chronological knowledge of my app. I want to ask questions like:
• When and why was a specific feature added?
• Has a particular feature already been implemented?
RAG doesn’t seem suitable here, as I need ChatGPT to generate answers with full context, not just partial knowledge.
Is this possible? If so, what approach or tools should I use to achieve this?