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?"
}
]
}'
千问curl测试代码
6 min read