Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/docs/development/chat_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ OpenAI provides cloud-based chat models with state-of-the-art performance for a
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `connection` | str | Required | Reference to connection method name |
| `model` | str | `"gpt-3.5-turbo"` | Name of the chat model to use |
| `model` | str | `"gpt-4o-mini"` | Name of the chat model to use |
| `prompt` | Prompt \| str | None | Prompt template or reference to prompt resource |
| `tools` | List[str] | None | List of tool names available to the model |
| `temperature` | float | `0.1` | Sampling temperature (0.0 to 2.0) |
Expand All @@ -863,7 +863,7 @@ OpenAI provides cloud-based chat models with state-of-the-art performance for a
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `connection` | String | Required | Reference to connection method name |
| `model` | String | `"gpt-3.5-turbo"` | Name of the chat model to use |
| `model` | String | `"gpt-4o-mini"` | Name of the chat model to use |
| `prompt` | Prompt \| String | None | Prompt template or reference to prompt resource |
| `tools` | List<String> | None | List of tool names available to the model |
| `temperature` | double | `0.1` | Sampling temperature (0.0 to 2.0) |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
*/
public class OpenAICompletionsSetup extends BaseChatModelSetup {

private static final String DEFAULT_MODEL = "gpt-3.5-turbo";
private static final String DEFAULT_MODEL = "gpt-4o-mini";
private static final double DEFAULT_TEMPERATURE = 0.1d;
private static final int DEFAULT_TOP_LOGPROBS = 0;
private static final boolean DEFAULT_STRICT = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
resolve_openai_credentials,
)

DEFAULT_OPENAI_MODEL = "gpt-3.5-turbo"
DEFAULT_OPENAI_MODEL = "gpt-4o-mini"


class OpenAIChatModelConnection(BaseChatModelConnection):
Expand Down
Loading