Skip to content

BingAPI

zklcdc edited this page Apr 30, 2024 · 15 revisions

Note

BingAPI 体验 APIKey 分发系统 地址: https://one.b1ng.chat

请使用 Github 账号注册 & 登录

注册后可加入「交流频道」后私聊 机器人@ProxyBingAI🚀频道小助手 发送 /getkey 即可获取体验额度兑换码


使用 OpenAI 格式 API 调用 BingAI

列出模型

GET /v1/modelsGET /api/v1/models

请求参数

返回示例

{
    "object": "list",
    "data": [
        {
            "id": "dall-e-3",
            "object": "model",
            "created": 1687579610,
            "owned_by": "Go-Proxy-BingAI"
        },
        {
            "id": "Balanced",
            "object": "model",
            "created": 1687579610,
            "owned_by": "Go-Proxy-BingAI"
        },

        ......

        {
            "id": "Precise-g4t-offline",
            "object": "model",
            "created": 1687579610,
            "owned_by": "Go-Proxy-BingAI"
        }
    ]
}

聊天

POST /v1/chat/completionsPOST /api/v1/chat/completions

请求参数

  • model: 必填, 模型
  • messages: 必填, 消息列表, 同 OpenAI 格式
  • stream: 可选, 流式输出
  • temperature : 可选, 模型名为 gpt-3.5-turbogpt-4-turbo-preview 时控制模型使用。
    • temperature ∈ [0, 0.75] 为 精准模式
    • temperature ∈ (0.75, 1.25) 为 平衡模式
    • temperature ∈ [1.25, 2] 为 创造模式

返回示例

{
    "id": "chatcmpl-NewBing",
    "object": "chat.completion.chunk",
    "created": 1705389778,
    "model": "Creative-g4t",
    "system_fingerprint": "ZB1yCBf7GngW",
    "choices": [
        {
            "index": 0,
            "delta": {},
            "message": {
                "role": "assistant",
                "content": "你好!这里是必应。我可以帮助你找到信息、回答问题、创造内容,还有更多。请问有什么我可以帮助你的吗? 😊"
            },
            "finish_reason": "stop"
        }
    ]
}

图像创建

需要配置 _U Cookie, 即配置 Go_Proxy_BingAI_USER_TOKEN 系列环境变量

POST/v1/images/generationsPOST /api/v1/images/generations

请求参数

  • prompt: 必填, 图片生成提示词
  • modle: 可选, 默认 dall-e-3(目前仅有)

返回示例

{
    "created": 1705392421,
    "data": [
        {
            "url": "https://th.bing.com/th/id/OIG.Harry-zklcdc-0"
        },
        {
            "url": "https://th.bing.com/th/id/OIG.Harry-zklcdc-1"
        },
        {
            "url": "https://th.bing.com/th/id/OIG.Harry-zklcdc-2"
        },
        {
            "url": "https://th.bing.com/th/id/OIG.Harry-zklcdc-3"
        }
    ]
}

模型列表

Note

-vision 后缀表示添加 视觉输入功能, 例如 Creative-visionBalanced-18k-visionPrecise-g4t-vision

模型名称 说明
dall-e-3 画图模型, 目前仅有
gpt-3.5-turbo 默认为 1
temperature ∈ [0, 0.75] = Precise
temperature ∈ (0.75, 1.25) = Balanced
temperature ∈ [1.25, 2] = Creative
gpt-3.5-turbo-16k 默认为 1
temperature ∈ [0, 0.75] = Precise-18k
temperature ∈ (0.75, 1.25) = Balanced-18k
temperature ∈ [1.25, 2] = Creative-18k
gpt-4-turbo-preview 默认为 1
temperature ∈ [0, 0.75] = Precise-g4t
temperature ∈ (0.75, 1.25) = Balanced-g4t
temperature ∈ [1.25, 2] = Creative-g4t
gpt-4-32k 默认为 1
temperature ∈ [0, 0.75] = Precise-g4t-18k
temperature ∈ (0.75, 1.25) = Balanced-g4t-18k
temperature ∈ [1.25, 2] = Creative-g4t-18k
gpt-4-vision-preview 默认为 1
temperature ∈ [0, 0.75] = Precise-g4t-vision
temperature ∈ (0.75, 1.25) = Balanced-g4t-vision
temperature ∈ [1.25, 2] = Creative-g4t-vision
Precise 精准模式, 联网搜索
Balanced 平衡模式, 联网搜索
Creative 创造模式, 联网搜索
Precise-offline 精准模式, 不联网搜索
Balanced-offline 平衡模式, 不联网搜索
Creative-offline 创造模式, 不联网搜索
Precise-g4t GPT4-Turbo 精准模式, 联网搜索
Balanced-g4t GPT4-Turbo 平衡模式, 联网搜索
Creative-g4t GPT4-Turbo 创造模式, 联网搜索
Precise-g4t-offline GPT4-Turbo 精准模式, 不联网搜索
Balanced-g4t-offline GPT4-Turbo 平衡模式, 不联网搜索
Creative-g4t-offline GPT4-Turbo 创造模式, 不联网搜索
Precise-18k 精准模式, 18k上下文, 联网搜索
Balanced-18k 平衡模式, 18k上下文, 联网搜索
Creative-18k 创造模式, 18k上下文, 联网搜索
Precise-18k-offline 精准模式, 18k上下文, 不联网搜索
Balanced-18k-offline 平衡模式, 18k上下文, 不联网搜索
Creative-18k-offline 创造模式, 18k上下文, 不联网搜索
Precise-g4t-18k GPT4-Turbo 精准模式, 18k上下文, 联网搜索
Balanced-g4t-18k GPT4-Turbo 平衡模式, 18k上下文, 联网搜索
Creative-g4t-18k GPT4-Turbo 创造模式, 18k上下文, 联网搜索

接入案例

📖 部署教程

⚡️ Azure 部署
☐ CodeSandbox 部署
🚀 Cloudfalre Worker 部署
📖 Cloudfalre Page 部署
▲ Vercel 部署
🐋 Docker 部署
🍒 二进制文件部署
✨ 反向代理
🤗 HuggingFace 部署(已失效)

📌 使用教程

🍩 登录账号
⚙️ 环境变量
📌 BingAPI
Clone this wiki locally