分类 "随手发现" 下的文章

curl --location --request POST 'https://openai.xxx.com/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer sk-xxxxx' \
--data-raw '{
    "model": "glm-4-air",
    "messages": [
      {
        "role": "user",
        "content": "月亮有多高!"
      }
    ]
  }'

阅读全文