Skip to content

Openai api forward · OpenAI 接口转发服务

License

Notifications You must be signed in to change notification settings

casezhao/openai-forward

Repository files navigation

OpenAI forwarding agent

简介

openai 接口转发服务.
用途: 解决国内无法直接访问OpenAI的问题,将该服务部署在海外服务器上,通过该服务转发OpenAI的请求。即搭建反向代理服务

已实现转发的接口

https://api.openai.com

  • /v1/chat/completions
  • /dashboard/billing/credit_grants

服务部署

提供两种服务部署方式,选择一种即可

方式一: pip

安装

pip install openai-forward

运行转发服务
可通过--port指定端口号,默认为8000,可通过--workers指定工作进程数,默认为1

openai_forward run --port=8000 --worders=1

方式二: Docker compose

下载项目根目录下的docker-compose.yaml文件,然后在文件路径下执行以下命令即可。

docker-compose up -d

服务调用

替换openai的api地址为该服务的地址即可,如:

https://api.openai.com/v1/chat/completions

替换为

http://{ip}:{port}/v1/chat/completions

个人搭建的代理服务(仅供测试):
http://2.56.125.247:9999/v1/chat/completions
http://2.56.125.247:9999/dashboard/billing/credit_grants

应用

例如可以在项目 chatgpt-web 中使用该服务
以其 Docker Compose 启动方式为例,只需修改其中的OPENAI_API_BASE_URL为我们搭建的代理服务地址即可:

OPENAI_API_BASE_URL: http://2.56.125.247:9999 

About

Openai api forward · OpenAI 接口转发服务

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.4%
  • Makefile 5.8%
  • Dockerfile 2.8%