Yes, thank you . I found this: OpenAI Platform.
I want to create a FAQ Answer Bot. I tried to train a model with my FAQ data but the generated answers were from very poor quality. Maybe I did a mistake with the training data? My training data looked like this (1st line).
{“prompt”: “Subject:XXX\n\n###\n\nSummary:XXX.\n\n###\n\nCategory:XXX\n\n###\n\nCustomer:XXX.”, “completion”: “XXX”}
I put this \n\n###\n\n as marker. Is it right? A more simple training data would be:
{“prompt”: XXX, “completion”: XXX} but I wanted to add as much data as possible and there is an similar example on openai website: OpenAI Platform
Are embeddings better for my use case? Specifically Text search using embeddings or Recommendations using embeddings?