OpenAI: GPT-4.1 Nano

由 OpenAI 提供

For tasks that demand low latency, GPT‑4.1 nano is the fastest and cheapest model in the GPT-4.1 series. It delivers exceptional performance at a small size with its 1 million token context window, and scores 80.1% on MMLU, 50.3% on GPQA, and 9.8% on Aider polyglot coding – even higher than GPT‑4o mini. It’s ideal for tasks like classification or autocompletion.

支持流式输出最大 33K tokens

模型特性

输入模态

  • image
  • text
  • file

模型参数

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

定价信息

积分定价

文本输入:3 积分
图片输入:3 积分
消息输出:6 积分

API 定价

输入价格:$0.100/1K tokens
输出价格:$0.400/1K tokens

使用示例

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