Chatgpt api 多轮对话功能实现

news/2024/11/6 14:00:20/

不废话,上代码

import requests
import jsonurl = "https://api.openai.com/v1/completions"payload = json.dumps({"model": "text-davinci-003","prompt": "日照香炉生紫烟,遥看瀑布挂前川,飞流直下三千尺,疑是银河落九天。这首古诗是谁写的?\n这首古诗是李白所写。\n介绍一下作者\n李白(701年-762年),字太白,号青莲居士,唐朝浪漫主义诗人,被后人誉为“诗仙”。\n详细解释一下这首诗\n这首诗描写的是一幅美丽的自然风景,作者用比喻的手法,把日照香炉生紫烟比作银河,把瀑布挂前川比作银河落九天,把飞流直下三千尺比作银河落九天,表达出大自然的壮丽美景。\n 你模仿这个也写一首","max_tokens": 2048,"temperature": 0
})
headers = {'Authorization': 'Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx','Content-Type': 'application/json'
}response = requests.request("POST", url, headers=headers, data=payload, allow_redirects=False)print(response.text)

 

 


http://www.ppmy.cn/news/950935.html

相关文章

关于ChatGPT API,你需要知道的…(截止到230303)

1. ChatGPT 的 API 已经推出 从官网 https://platform.openai.com/docs/guides/chat 和 https://platform.openai.com/docs/models/gpt-3-5 可以看出:gpt-3.5-turbo 已经正式上线。 GPT-3 快速入门:前端调用 GPT-3 API、Python 调用 GPT-3 APIopenAI 模…

ChatGPT API 简单使用教程

1、关于ChatGPT 和 API 获取 2、调用API 实现 ChatGPT 对话 import openaiopenai.api_key "你的api_key"def completion(prompt):completions openai.Completion.create(engine"text-davinci-003",promptprompt,max_tokens1024,n1,stopNone,temperatu…

chatgpt api基础使用示例

环境 pip install openaiapi Completions url: POST https://api.openai.com/v1/completions 参数&#xff1a; model: (string) text-davinci-003, text-davinci-002, text-curie-001, text-babbage-001, text-ada-001prompt: (string/array) (<|endoftext|>)suffix…

html JavaScript 调用chatgpt api

在HTML中使用JavaScript调用ChatGPT API需要使用AJAX(异步JavaScript和XML)来实现。您需要使用XMLHttpRequest对象来发送请求&#xff0c;然后使用JavaScript处理响应。 示例代码如下&#xff1a; varrequest new XMLHttpRequest(); request.open("POST", "htt…

ChatGPT API 正式开放,价格直接打骨折!100万个单词才18元

ChatGPT爆火之后&#xff0c;各种「自制API」层出不穷&#xff0c;中间商们也一个个赚得盆满钵满。 这次&#xff0c;OpenAI终于下定决心——正式开放ChatGPT API&#xff01; ChatGPT API地址&#xff1a;https://platform.openai.com/docs/guides/chat 现在&#xff0c;不要耗…

ChatGPT API

copy了一波 ChatGPT 官方API&#xff0c;希望可以帮助大家: 传送门 下面是AI对话和文字生成图片的两个例子 AI对话 Curl: curl https://api.openai.com/v1/completions \-H Content-Type: application/json \-H Authorization: Bearer YOUR_API_KEY \-d {"model"…

如何查询chatgpt apikey 的使用情况

如何查询chatgpt apikey 的使用情况 网上有很多免费的公用的查询chatgpt apikey (api-key)网站.

chatgpt API 使用实例

chatgpt API 使用指南 OpenAI API简介 “OpenAI 的 API 可用于解释或生成自然语言、代码或图像的任何涉及任务&#xff0c;我们提供范围广泛的模型&#xff0c;为各种任务提供不同层次的性能&#xff0c;还可以微调您自己的定制模型&#xff0c;从而利用这些模型进行内容生成…