自主人工智能(开源版)分享

主要内容

curl --location 'http://172.20.90.121:2000/v1/chat/completions' \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-YOUROPENAIKEY"   \
-d '{
    "model": "gpt-3.5-turbo",
    "stream": false,
    "messages": [
      {
        "role": "system",
        "content": "You are a helper."
      },
      {
        "role": "user",
        "content": "5个字介绍你自己"
      }
    ]
  }'
posted @ 2023-12-14 18:09  hunkjun  阅读(12)  评论(0)    收藏  举报