chatgpt-api-web-docker Public 第三方 ChatGPT API 前后端。Yet another ChatGPI API web service. 32 4 0 0 Updated Aug 30, 2023 chatgpt-api-web-frontend Public TypeScript 2 GPL-3.0 1 0 0 Updated Aug 30, 2023 chatgpt-api-web-backend Public Python 0 GPL-3.0 1 0 0 Updated Ma...
GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
git clone https://github.com/Chanzhaoyu/chatgpt-web.git 填写秘钥 将chatgpt-web/service/目录下文件.env.example改名为.env,并修改文件中的OPENAI_API_KEY值,改为上文中获取的 API Keys,注意不需要加引号。 # OpenAI API Key - https://platform.openai.com/overview OPENAI_API_KEY=your_api_key 安装...
docker build -t chatgpt-web-java . docker run -d -p 3002:3002 chatgpt-web-java 配置参数,在环境变量 PARAMS 中配置 application yml 用到的参数,如下示例 --spring.datasource.url=jdbc:mysql://localhost:3309/chat?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&serverTimezone=Asia/Shang...
github上有不少chatgpt前端的demo,有网页版的,也有小程序版本的。下面我们就来介绍下: 1、官方openai-quickstart-node 项目地址:https://github.com/openai/openai-quickstart-node 效果图:给宠物取名字。输入宠物,然后调用openai api返回宠物名称。 2、非官方chatgpt-web ...
GitHub - acheong08/ChatGPT: Reverse engineered ChatGPT API 我们知道OpenAI官方还没有发布正式的ChatGPT接口,现在似乎只有GPT3. 这是某大佬做的ChatGPT逆向工程API,可以用来做web应用的的对话接口,还是蛮有用处的。 看项目介绍是可以通过python来安装,最低Python3.9版本。
下面我介绍几款应用,方便你快速搭建自己的 ChatGPT Web 应用。当然都会依赖ChatGPT里一个很关键的参数:OPENAI_API_KEY。 ChatGPT Next Web https://github.com/Yidadaa/ChatGPT-Next-Web ChatGPT-Next-Web 有哪些特性: 提供体积极小(~5MB)的跨平台客户端(Linux/Windows/MacOS) ...
ChatGPT Java版SDK开源地址:https://github.com/Grt1228/chatgpt-java,目前收获将近1200+的star。有...
大家可以按照以上方法试一试。本文仅供参考,具体功能请查看官方API文档地址。欢迎留言和点赞。 源码地址: https://pan.baidu.com/s/11n2NBJQ1Bgka-FVaZxYEfw?pwd=lo9i 本来想传到github上去,网络太差了。 API文档地址:https://platform.openai.com/docs/introduction...
docker build -t chatgpt-web . # 前台运行 docker run --name chatgpt-web --rm -it -p 3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web # 后台运行 docker run --name chatgpt-web -d -p 3002:3002 --env OPENAI_API_KEY=your_api_key chatgpt-web # 运行地址 http://localhost...