Skip to content

Commit

Permalink
fix: o1-mini values
Browse files Browse the repository at this point in the history
  • Loading branch information
xavidop committed Oct 23, 2024
1 parent 0b4c1f1 commit 6d6d8df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ You can find the full API reference in the [API Reference Documentation](https:/

## Troubleshooting

1. GPT o1-preview it is still in beta. It does not support system roles and the `temperature` and `topP` needs to be set to 1. See OpenAI annocement [here](https://openai.com/index/introducing-openai-o1-preview/)
1. GPT `o1-preview` and `o1-mini` it is still in beta. It does not support system roles, tools and the `temperature` and `topP` needs to be set to `1`. See OpenAI annocement [here](https://openai.com/index/introducing-openai-o1-preview/)
2. Cohere models only supports text output for now. Issue opened [here](https://github.com/orgs/community/discussions/142364).

## Contributing
Expand Down
8 changes: 4 additions & 4 deletions src/github_llms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const openAIO1Preview = modelRef({
label: "OpenAI - o1-preview",
supports: {
multiturn: true,
tools: true,
tools: false,
media: false,
systemRole: false,
output: ["text", "json"],
Expand All @@ -100,9 +100,9 @@ export const openAIO1Mini = modelRef({
label: "OpenAI - o1-mini",
supports: {
multiturn: true,
tools: true,
media: true,
systemRole: true,
tools: false,
media: false,
systemRole: false,
output: ["text", "json"],
},
},
Expand Down

0 comments on commit 6d6d8df

Please sign in to comment.