Reference
O

o1

o1, a language model from OpenAI.
modelOverride: { model: "o1" }
OpenAI·Released December 2024
Pricing
Input
$15.00 / 1M
Output
$60.00 / 1M
Input
$3.00 / 1M
Output
$12.00 / 1M
Input
$15.00 / 1M
Output
$60.00 / 1M
Specifications
Context window
200,000 tokens
Max output
100,000 tokens
Released
December 2024
Parameters
Model options, passed in modelOverride.config.
ParameterTypeDefaultRange / options
reasoning_effort
Used to give the model guidance on how many reasoning tokens it should generate before creating a response to the prompt. Low will favor speed and economical token usage, and high will favor more complete reasoning at the cost of more tokens generated and slower responses. The default value is medium, which is a balance between speed and reasoning accuracy.
Selectmediumlowmediumhigh
Use this model
await mindstudio.generateText({
  message: "...",
  modelOverride: {
    model: "o1",
    config: {
      reasoning_effort: "medium",
    },
  },
});