diff --git a/docs/openai-models.md b/docs/openai-models.md index ee1c4e78..5bb9d3ec 100644 --- a/docs/openai-models.md +++ b/docs/openai-models.md @@ -134,9 +134,10 @@ Let's say OpenAI have just released the `gpt-3.5-turbo-0613` model and you want ```yaml - model_id: gpt-3.5-turbo-0613 + model_name: gpt-3.5-turbo-0613 aliases: ["0613"] ``` -The `model_id` is the identifier that will be recorded in the LLM logs. You can use this to specify the model, or you can optionally include a list of aliases for that model. +The `model_id` is the identifier that will be recorded in the LLM logs. You can use this to specify the model, or you can optionally include a list of aliases for that model. The `model_name` is the actual model identifier that will be passed to the API, which must match exactly what the API expects. If the model is a completion model (such as `gpt-3.5-turbo-instruct`) add `completion: true` to the configuration.