共计 1224 个字符,预计需要花费 4 分钟才能阅读完成。
GitHub – ClassmateLin/free-chatgpt: The chatgpt api can be used for free without an account, and one-click deployment of docker. 无需账号即可免费使用的 chatgpt api, docker 一键部署。The chatgpt api can be used for free without an account, and one-click deployment of docker. 无需账号即可免费使用的 chatgpt api, docker 一键部署。– GitHub – ClassmateLin/free-chatgpt: The chatgpt api can be used for free without an account, and one-click deployment of docker. 无需账号即可免费使用的 chatgpt api, docker 一键部署。
https://github.com/ClassmateLin/free-chatgptfree-chatgpt 是一个使用 Rust 语言构建的开源项目。
不需要注册账号, 更不需要 KEY, 只需使用一条 docker 命令部署, 即可获得免费的 chatgpt api。
docker run -itd -p 8080:8080 –name=free-chatgpt classmatelin/free-chatgpt:latest
使用示例:
curl –silent –location –request POST ‘http://127.0.0.1:8080/api’ \
–header ‘Content-Type: application/json’ \
–data-raw ‘{“model”: “openai:gpt-3.5-turbo”,”prompt”: “ 您是一个 Rust 语言专家, 我有问题需要问你。\n\n 请问如何写一个 hello world 程序?”
}’
### 支持模型
– anthropic:claude-instant-v1
– anthropic:claude-v1
– replicate:replicate/alpaca-7b
– replicate:stability-ai/stablelm-tuned-alpha-7b
– huggingface:bigscience/bloomz
– huggingface:google/flan-t5-xxl
– huggingface:google/flan-ul2
– cohere:command-medium-nightly
– cohere:command-xlarge-nightly
– openai:gpt-3.5-turbo
– openai:text-ada-001
– openai:text-babbage-001
– openai:text-curie-001
– openai:text-davinci-002
– openai:text-davinci-003