配置环境:拷贝.env.example文件为.env,并在新文件中填写你的OpenAI API密钥。 启动项目:执行pnpm run dev,本地项目会启动,访问http://localhost:3000即可预览。 部署选项 不同的部署方式可满足不同的需求和偏好: Vercel部署:通过几个简单步骤在Vercel上部署你的ChatGPT应用,快速并且高效。
ts复制代码importOpenAIfrom'openai'constopenai=newOpenAI({apiKey:'xxxxxxxxxxxx'})asyncfunctionmain() {conststream=awaitopenai.chat.completions.create({model:'gpt-3.5-turbo',messages:[{role:'user',content:'Introduce yourself'}],max_tokens:100,stream:true,// stream})// 打印 streamforawait(con...
比如可以用这个项目来验证一下:https://github.com/ddiu8081/chatgpt-demo 方法很简单,只需要 拉取代码:git clone git@github.com:ddiu8081/chatgpt-demo.git 安装依赖:npm install 复制.env.example文件,命名为.env文件,把申请的OPENAI_API_KEY填上,再把OPENAI_API_BASE_URL填写上面配置好的代理地址,比如:h...
class SimChatGPT: def __init__(self, api_key: str, messages: List = None): open...
ChatGPT ChatGPTDemo Based on OpenAI API (gpt-3.5-turbo).
https://github.com/ddiu8081/chatgpt-demo 方法很简单,只需要 拉取代码:git clone git@github.com:ddiu8081/chatgpt-demo.git 安装依赖:npm install 复制.env.example文件,命名为.env文件,把申请的OPENAI_API_KEY填上,再把OPENAI_API_BASE_URL填写上面配置好的代理地址,比如:http://openai-proxy.abc123.co...
ChatGPT ChatGPTDemo Based on OpenAI API (gpt-3.5-turbo).
ChatGPT ChatGPTDemo Based on OpenAI API (gpt-3.5-turbo).
ChatGPT-API DemoEnglish | 简体中文A demo repo based on OpenAI GPT-3.5 Turbo API.🍿 Live preview: https://chatgpt.ddiu.me🏖️ V2 Version(Beta): https://v2.chatgpt.ddiu.me⚠️ Notice: Our API Key limit has been exhausted. So the demo site is not available now....
OpenAI ChatGPT API: 入门指南 先决条件 确保你拥有一个 OpenAI 账户。如果你没有, chat.openai.com 并创建一个账户。你也可以使用你的谷歌或微软账号。 创建一个账户后,生成一个专属于你的 API 密钥。访问 platform.openai.com 并创建一个新的秘密密钥。