agentic icon indicating copy to clipboard operation
agentic copied to clipboard

Can I use a fine-tuned model?

Open samo-c opened this issue 2 years ago • 1 comments

Describe the feature

Can I use a fine-tuned model? What should I do?

const api = new ChatGPTAPI({ apiKey: "", CompletionParams:{ model:"FINE_TUNED_MODEL" } }) This option does not appear to be in effect. What should I do?

samo-c avatar Feb 17 '23 05:02 samo-c

This should be:

new ChatGPTAPI({ apiKey: "", completionParams:{ model:"FINE_TUNED_MODEL" } })

Note the lower-case completionParams.

You can set debug: true to print out the body we're sending to OpenAI.

transitive-bullshit avatar Feb 17 '23 05:02 transitive-bullshit