chatgpt-api-proxy
chatgpt-api-proxy copied to clipboard
最简单的方式实现自建主机搭建的OpenAI api(Chatgpt api)代理。
Results
1
chatgpt-api-proxy issues
Sort by
recently updated
recently updated
newest added
贴一个测试过的docker-compose.yml一键启动的脚本: ``` ch-gptproxy: restart: always container_name: ch-gptproxy hostname: ch-gptproxy image: python:3.11.0 volumes: - ./volumes/ch-gptproxy/app.py:/home/app.py:rw - ./volumes/ch-gptproxy/requirements.txt:/home/requirements.txt:rw command: - /bin/sh - -c - "pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple -r /home/requirements.txt && python...