标题: 有反代 GPT 3.5 的方案吗?之前用 aurora 的不行了 [打印本页] 作者: martinz 时间: 2024-5-4 10:59 标题: 有反代 GPT 3.5 的方案吗?之前用 aurora 的不行了 RT 之前用挺好,最近报 Unusual activity has been detected from your device. Try again later作者: tokyohot 时间: 2024-5-4 11:18
services:
chatgpt-next-web:
image: yidadaa/chatgpt-next-web
ports:
- "3000:3000"
environment:
OPENAI_API_KEY: "gptyyds"
CODE: "HelloGPT" # 如果你想要设置页面的访问密码,请修改这里
BASE_URL: "http://freegpt35:3040"
CUSTOM_MODELS: "-all,+gpt-3.5-turbo"
depends_on:
- freegpt35
freegpt35:
image: ghcr.io/aurorax-neo/free-gpt3.5-2api
restart: always
ports:
- "3040:3040"
复制代码
作者: sheepgreen 时间: 2024-5-4 11:31
https://github.com/slippersheepig/ChatGPT-to-API
目前在用作者: martinz 时间: 2024-5-4 11:32
"You didn't provide an API key. You need to provide your API key in an Authorization header using Bearer auth (i.e. Authorization: Bearer YOUR_KEY)"