当前位置:   article > 正文

chatGPT开放接口API使用说明-更新至gpt-4o模型_chatgpt api

chatgpt api

1.请求地址: https://lytcreate.com/api/chat/

ps: 如果是请求文心一言接口,请将请求地址替换为:https://lytcreate.com/api/chat_baidu/(暂停使用)

2.请求方式: POST

3.body格式:json

4.body请求体:model可以填写gpt-3.5或者gpt-4o(注意是字母o不是数字0),不填写则默认gpt-3.5

  1. {
  2. "token": "个人中心获取 -- 非openai的key",
  3. "question": "user:请求的问题",
  4. "model": "gpt-3.5或者是gpt-4o"
  5. }

说明:

token获取方式:访问首页(https://lytcreate.com),注册后登陆,访问后台,进入个人信息查看 token

5.响应体格式:json

6.响应体:

  1. {
  2. "code": 200/403/405,
  3. "question": "提交的问题",
  4. "answer": "chatGPT的回答",
  5. "message": "响应提示信息",
  6. "api_num": 999(剩余可请求次数)
  7. }

7.请求实例(python)

  1. import requests
  2. url = "https://lytcreate.com/api/chat/"
  3. body = {
  4. "token": "xxxxxxxxx-token",
  5. "question": "user:太阳从哪边升起?",
  6. "model": "gpt-4o"
  7. }
  8. res = requests.post(url, json=body)
  9. print(json.loads(res.content))

有任何疑问请加入QQ交流群:733690997

特别说明: 2024.05.19更新

如果需要有上下文语境,请把之前问的问题用user区分作为question传过来即可,例如question= ”user: 你好.user:你是chatGPT吗?user:写个冒泡排序.“,举例:

question1 = "你好!"

question2: "今天天气怎么样?"

那么第二次提交带user和问题即可,请求体里面的question就是:

question = " user:你好!user:今天天气怎么样?"

这样获取的答案就是支持上下文语境了哈~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/870267
推荐阅读
相关标签
  

闽ICP备14008679号