OpenAI: ChatGPT-4o

由 OpenAI 提供

OpenAI ChatGPT 4o is continually updated by OpenAI to point to the current version of GPT-4o used by ChatGPT. It therefore differs slightly from the API version of [GPT-4o](/models/openai/gpt-4o) in that it has additional RLHF. It is intended for research and evaluation. OpenAI notes that this model is not suited for production use-cases as it may be removed or redirected to another model in the future.

支持流式输出最大 16K tokens

模型特性

支持的功能

  • Ultra-long Context
  • Moderated

输入模态

  • text
  • image

模型参数

最大 Tokens:16K
默认温度:0.7
流式输出:支持

定价信息

积分定价

文本输入:150 积分
图片输入:150 积分
消息输出:302 积分

API 定价

输入价格:$5.000/1K tokens
输出价格:$15.000/1K tokens

使用示例

API 调用示例
curl -X POST "https://chatsking.com/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "chatgpt-4o-latest",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    "max_tokens": 1000,
    "temperature": 0.7
  }'