千问curl测试代码

发布时间:2024-04-30浏览次数:0

支持注册ChatGPT Plus的OneKey虚拟卡
绑定Apple Pay、Google Pay、支付宝和微信支付进行日常消费

注册和了解更多 ->

silver

curl https://api.openai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
    "model": "gpt-3.5-turbo",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Who won the world series in 2020?"
      },
      {
        "role": "assistant",
        "content": "The Los Angeles Dodgers won the World Series in 2020."
      },
      {
        "role": "user",
        "content": "Where was it played?"
      }
    ]
  }'




  curl -X POST https://qw.test.xyz/v1/chat/completions  \
-H "Content-Type: application/json" \
-d '{
  "model": "qwen:7b",
  "messages": [
    {
      "role": "user",
      "content": "翻译为中文: Why is the sky blue?"
    }
  ]
}'


字节笔记本扫描二维码查看更多内容