I tried applying the finetuned gpt3.5 model to my assistant, but my finetuned model does not seem to appear in the list of models on this page https://platform.openai.com/assistants.
const assistant = await openai.beta.assistants.create({
name: "Math Tutor",
instructions: "You are a personal math tutor. Write and run code to answer math questions.",
tools: [{ type: "code_interpreter" }],
model: "my Finetuning model"
});
I don’t think this is valid either.
Does the Assistants api not support finetuning?
If so, I’m also wondering if there are any plans to support finetuning.