I want to come up with a QnA type format in GPT3 fine tuning design. However, Im having a hard time solving it. It seems that prompt design is very different against fine tuning design. Can somebody has an example on how you format your gpt3 fine tuning JSONL format? Here’s my current format:
{"prompt":"Human: Can you help with a technical problem\nAI:","completion":"I understand that you need support. Would you like self service or do you need to report an issue? Please choose a button or just type in your answer."}
Here’s how I call it on the completion API:
curl https://api.openai.com/v1/completions \
-H "Authorization: Bearer <API_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"prompt": "Human: Can you help with a technical problem\nAI:": "<FINE_TUNE_MODEL>"}'
The response of this CURL call does not give me the completion that I defined. Can somebody encounter this problem?