-
I upload a .jsonl file, I start a fine tune task based on that upload and wait for it to complete. Now I have a new model in the model list that has the date and organization name on it. I assume that model is the result of my .jsonl file. If I change my conversation call from using model gpt-3.5-turbo which works but knows nothing about the jsonl data, to the new model list I get: No idea how to tap into the data the jsonl file added. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi. This is because the ChatCompletions endpoint does not support fine-tuned models, fine-tuned models are not specifically designed for chat-based conversations. In order to combat this, you can use the regular Completions endpoint with your own conversation tracking to emulate those found in ChatCompletions. |
Beta Was this translation helpful? Give feedback.
Hi.
This is because the ChatCompletions endpoint does not support fine-tuned models, fine-tuned models are not specifically designed for chat-based conversations. In order to combat this, you can use the regular Completions endpoint with your own conversation tracking to emulate those found in ChatCompletions.