Any suggestions (or what others may have had success in) with a file type in retrieval for questions and answers?
My use case:
I’ve transitioned from a NLP Intent Classifier model to the OpenAI Assistant using the AssistantAPI. The data I had from the intent classifier was
- Intents
- Intent examples (what queries trigger the intent)
- Mapped to the intent response
I’ve tried many ways to convert this data into file types including json, where each json object holds patterns (intent examples) and a response value. I’m getting the best results here and I’m not even to sure how the json file is indexed or embedded the way I’d hope for when the file is uploaded to the assistant.
I’ve also tried just the responses themselves written to PDF pages and fed that to the Assistant in hopes it picks the best answers based on user queries but I’m still not where I’d like to be with accuracy.
Any suggestions on different file types and how to structure them, with/without the intents examples etc.
Thanks!