OpenAI ChatGPT (GPT-3.5) API错误 400: “‘user’ 不是类型为 ‘object’ 的对象”

huangapple go评论106阅读模式
英文:

OpenAI ChatGPT (GPT-3.5) API error 400: "'user' is not of type 'object'"

问题

以下是您的代码中需要翻译的部分:

  1. I share with you my code bellow to get a response from a POST request with R from OPENAI chatgpt api :
  2. param <- list(model = "gpt-3.5-turbo",
  3. messages = c("role" = "user",
  4. "content" = "Hello"))
  5. result <- POST("https://api.openai.com/v1/chat/completions",
  6. body = param,
  7. add_headers(Authorization=openai_secret_key),
  8. encode = "json")
  9. Here is the result :
  10. >Response [https://api.openai.com/v1/chat/completions]
  11. Date: 2023-03-02 16:28
  12. Status: 400
  13. Content-Type: application/json
  14. Size: 158 B
  15. {
  16. error: {
  17. message: “‘user is not of type object - messages.0’”,
  18. type: invalid_request_error”,
  19. param: null,
  20. code: null
  21. }
  22. }
  23. So the user and the content part is not working but the model is working
  24. Thanks a lot
  25. In postman, I have this JSON working but can't make it work in R
  26. {
  27. "model":"gpt-3.5-turbo",
  28. "messages":[
  29. {
  30. "role":"user",
  31. "content":"Hello!"
  32. }
  33. ]
  34. }
英文:

I share with you my code bellow to get a response from a POST request with R from OPENAI chatgpt api :

  1. param <- list(model = "gpt-3.5-turbo",
  2. messages = c("role" = "user",
  3. "content" = "Hello"))
  4. result <- POST("https://api.openai.com/v1/chat/completions",
  5. body = param,
  6. add_headers(Authorization=openai_secret_key),
  7. encode = "json")

Here is the result :

>Response [https://api.openai.com/v1/chat/completions]
Date: 2023-03-02 16:28
Status: 400
Content-Type: application/json
Size: 158 B
{
“error”: {
“message”: “‘user’ is not of type ‘object’ - ‘messages.0’”,
“type”: “invalid_request_error”,
“param”: null,
“code”: null
}
}

So the user and the content part is not working but the model is working

Thanks a lot

In postman, I have this JSON working but can't make it work in R

  1. {
  2. "model":"gpt-3.5-turbo",
  3. "messages":[
  4. {
  5. "role":"user",
  6. "content":"Hello!"
  7. }
  8. ]
  9. }

答案1

得分: 0

如果您运行test.r,OpenAI API将返回以下完成:

> [1] "\n\n你好!我可以帮助您今天吗?"

test.r

  1. library(httr)
  2. library(jsonlite)
  3. OPENAI_API_KEY <- "sk-xxxxxxxxxxxxxxxxxxxx"
  4. param <- list(model = "gpt-3.5-turbo",
  5. messages = list(list(role = "user", content = "你好"))
  6. )
  7. result <- POST("https://api.openai.com/v1/chat/completions",
  8. body = param,
  9. add_headers("Authorization" = paste("Bearer", OPENAI_API_KEY)),
  10. encode = "json")
  11. response_content <- fromJSON(rawToChar(result$content))
  12. print(response_content$choices[[1]]$content)
英文:

If you run test.r the OpenAI API will return the following completion:

> [1] "\n\nHello! How may I assist you today?"

test.r

  1. library(httr)
  2. library(jsonlite)
  3. OPENAI_API_KEY <- "sk-xxxxxxxxxxxxxxxxxxxx"
  4. param <- list(model = "gpt-3.5-turbo",
  5. messages = list(list(role = "user", content = "Hello"))
  6. )
  7. result <- POST("https://api.openai.com/v1/chat/completions",
  8. body = param,
  9. add_headers("Authorization" = paste("Bearer", OPENAI_API_KEY)),
  10. encode = "json")
  11. response_content <- fromJSON(rawToChar(result$content))
  12. print(response_content$choices[[1]]$content)

huangapple
  • 本文由 发表于 2023年3月3日 18:07:56
  • 转载请务必保留本文链接:https://go.coder-hub.com/75625675.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定