Any example to finetune with system prompt / instruction?

I am struggling to get a single example that works via AI Studio or gia API that can fine tune a model with CSV/JSONL.

Can anyone help? I really appreciate your time reading this.

Best Regards,

Ashvin

In case if someone is looking for the same, Here is sample json for each line for JSONL:

{ “systemInstruction”: { “role”: “system”, “parts”: [ { “text”: “You are a helpful and harmless AI assistant.” } ] },
“contents”: [
{ “role”: “user”, “parts”: [ { “text”: “What is the capital of France?” } ] },
{ “role”: “model”, “parts”: [ { “text”: “The capital of France is Paris.” } ] }
]
}