1. 通用模型
Chat Open
  • 通用模型
    • 角色扮演模型通用请求接口
      POST
    • 大语言模型通用请求接口
      POST
    • 智能体模型通用请求接口
      POST
    • gpt-4o
      POST
    • gpt-4o-多模态
      POST
    • moonshot-128k
      POST
    • deepseek-chat
      POST
    • claude-v3.5-sonnet
      POST
    • deepseek-chat 流式输出
      POST
    • gpt-image-1
      POST
  • 私有化模型
    • model-k(v1)
      POST
    • gemini
      POST
  • 数据模型
    • 示例数据模型
      • Pet
      • Category
      • Tag
  1. 通用模型

gpt-4o-多模态

开发中
POST
/AIGCChatOpenServ/saas/gpt-4o/text/v3

请求参数

Header 参数

Body 参数application/json

示例
{
    "messages": [
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "what's the content of the picture?"
                },
                {
                    "type": "imageUrl",
                    "imageUrl": {
                        "url": "https://aigcoss.zhiqiteai.cn/Input-Img/946c66b9-69c2-4746-97c8-f1764859bdd8.jpg"
                    }
                }
            ]
        }
    ]
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/AIGCChatOpenServ/saas/gpt-4o/text/v3' \
--header 'X-Request-Req-Accesskeyid: your apikey' \
--header 'X-Request-Req-Accesskeysecret: your apiSecret' \
--header 'Content-Type: application/json' \
--data-raw '{
    "messages": [
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "what'\''s the content of the picture?"
                },
                {
                    "type": "imageUrl",
                    "imageUrl": {
                        "url": "https://aigcoss.zhiqiteai.cn/Input-Img/946c66b9-69c2-4746-97c8-f1764859bdd8.jpg"
                    }
                }
            ]
        }
    ]
}'

返回响应

🟢200成功
application/json
Body

示例
{}
修改于 2025-09-30 08:09:24
上一页
gpt-4o
下一页
moonshot-128k
Built with