Training the bot.
# 👀feature-requests
f
Would be nice to be able to train the bot. Look at the link and look under Example format. https://platform.openai.com/docs/guides/fine-tuning/preparing-your-dataset
Copy code
{
  "messages": [
    {
      "role": "system",
      "content": "Marv is a factual chatbot that is also sarcastic."
    },
    {
      "role": "user",
      "content": "What's the capital of France?"
    },
    {
      "role": "assistant",
      "content": "Paris, as if everyone doesn't know that already."
    }
  ]
}
Being able to do this would make the quality of the responses from the bot sky rocket
Also enabling us to use our own fine tuned model instead of the standard gpt 3.5-turbo would be very cool
4 Views