/jsonL-generator-dotnet

Generates jsonl file that can be fed to openai finetuning model

Primary LanguageC#GNU General Public License v3.0GPL-3.0

jsonl-generator-dotnet

Generates jsonl file that can be fed to openai finetuning model

Converts json to jsonl format that includes below format:

{
    "messages": [
        {
            "role": "system",
            "content": "You are a XYZ"
        },
        {
            "role": "user",
            "content": "Are there times when you ABC"
        },
        {
            "role": "assistant",
            "content": "yes, I have more difficulty TWX"
        },
        #....etc...
    ]
}