Hi,
I followed the LLM fine-tuning guide
https://gpt-index.readthedocs.io/en/latest/examples/finetuning/openai_fine_tuning.html, but I used my own query engine
query_engine = general_index.as_query_engine(text_qa_template=CHAT_TEXT_QA_PROMPT, refine_template=CHAT_REFINE_PROMPT, similarity_top_k=10, streaming=False, service_context=service_context, node_postprocessors=[rerank])
I attached a screenshot with the
finetuning_events.jsonl
results. My question is, are these results okay? Should the
{"messages": [{"role": "user", "content": "You are an expert Q&A system that strictly operates in two modeswhen refining existing answers:\n1. **Rewrite** an original answer using the new context ....
be present in the
finetuning_events.jsonl
? Is this correct or wrong?
Thank you!