#Check new model of openai

1 messages · Page 1 of 1 (latest)

leaden shoal
#

Hello o1 model

tepid adderBOT
#

Hi @leaden shoal. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

OpenAI has introduced the o1 series, which includes the o1-preview and o1-mini models. These models are designed for complex reasoning tasks and are trained with reinforcement learning to perform deep reasoning. They are particularly useful for solving hard problems in domains such as research, strategy, coding, math, and science.

Key Features of the o1 Models:

  • o1-preview: This model is designed to solve hard problems across various domains using broad general knowledge.
  • o1-mini: A faster and cheaper version of the o1 model, particularly adept at tasks in coding, math, and science where extensive general knowledge isn't required.

Limitations:

  • The o1 models do not support advanced tools and features such as memory, custom instructions, data analysis, file uploads, web browsing, and vision. For these capabilities, GPT-4o is recommended.

Usage:

The o1 models are available through the chat completions endpoint in the OpenAI API. Here is an example of how to use the o1-preview model:

from openai import OpenAI
client = OpenAI()

response = client.chat.completions.create(
    model="o1-preview",
    messages=[
        {
            "role": "user", 
            "content": "Write a bash script that takes a matrix represented as a string with format '[1,2],[3,4],[5,6]' and prints the transpose in the same format."
        }
    ]
)

print(response.choices[0].message.content)

For more detailed information, you can refer to the OpenAI documentation on o1 models (https://platform.openai.com/docs/models#o1) and the reasoning guide (https://platform.openai.com/docs/guides/reasoning).

If you have any more questions or need further assistance, feel free to ask!

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:

#

@leaden shoal Kapa.ai is still learning and improving, please let me know how I did by reacting below.

leaden shoal
#

I need A o1 preview Acces please can to tell me.

night cedar
tepid adderBOT
#

Let me check the knowledge base for you again. One moment! :books: