虽然有 API 密钥,但 GPT 3.5 未配置

curl https://api.openai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $12345679" \
  -d '{
     "model": "gpt-3.5-turbo",
     "messages": [{"role": "user", "content": "Say this is a test!"}],
     "temperature": 0.7
   }'

结构是这样的吗?也就是说,在 API 密钥前保留“$”符号,在 API 密钥后保留“)”符号?