ChatGPT-3 测试OpenAI API的正确URL是什么?

jvlzgdj9  于 2023-03-03  发布在  其他
关注(0)|答案(1)|浏览(916)

我尝试在Windows CMD中使用curl测试GPT-3 API:

curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer MY_KEY" -d "{\"text\": \"is this working\"}" https://api.openai.com/v1/conversations/text-davinci-003/messages

鉴于我确实更改了我的密钥“MY_KEY”。
但我得到了:

{
  "error": {
    "message": "Invalid URL (POST /v1/conversations/text-davinci-003/messages)",
    "type": "invalid_request_error",
    "param": null,
    "code": null
  }
}

我也尝试了text-davinci-002text-davinci-001的型号名称,但是得到了同样的无效URL错误。这里正确的URL是什么?我在文档上找不到它(或者在chatGPT本身)。

tzxcd3kk

tzxcd3kk1#

/v1/conversations/text-davinci-003/messages发送POST请求不会返回您想要的结果,因为OpenAI API不使用此URL。
下面是完成消息Say this is a test的cURL请求示例

curl https://api.openai.com/v1/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"model": "text-davinci-003", "prompt": "Say this is a test", "temperature": 0, "max_tokens": 7}'

这是API响应的示例:

{
    "id": "cmpl-GERzeJQ4lvqPk8SkZu4XMIuR",
    "object": "text_completion",
    "created": 1586839808,
    "model": "text-davinci:003",
    "choices": [
        {
            "text": "This is indeed a test",
            "index": 0,
            "logprobs": null,
            "finish_reason": "length"
        }
    ],
    "usage": {
        "prompt_tokens": 5,
        "completion_tokens": 7,
        "total_tokens": 12
    }
}

以下是API路径的完整列表:
相反,您可以使用OpenAI documentation

  • #####列出型号

获取https://api.openai.com/v1/models

  • #####检索模型

获取https://api.openai.com/v1/models/{model}

  • #####创建完成

开机自检https://api.openai.com/v1/completions

  • #####创建编辑

术后1个月5个月1次

  • #####创建映像

开机自检https://api.openai.com/v1/images/generations

  • #####创建图像编辑

开机自检https://api.openai.com/v1/images/edits

  • #####创建图像变体

开机自检https://api.openai.com/v1/images/variations

  • #####创建嵌入

开机自检https://api.openai.com/v1/embeddings
OpenAI documentation中提供了更多功能。

相关问题