无需账号即可免费无限次数使用的chatgpt api, 通过Vercel AI Playground实现。
docker run -itd -p 8080:8080 --name=free-chatgpt classmatelin/free-chatgpt:latest
.
如需使用proxy, 则添加环境变量:
SOCKS_PROXY: "socks5:x.x.x.x:x"
HTTP_PROXY: "https://x.x.x.x:x"
HTTPS_PROXY: "https://x.x.x.x:x"
例如: docker run -itd -p 8080:8080 -e SOCKS_PROXY="socks5:192.168.123.88:1080" --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程序?"
}'
参数 | 必填 | 描述 |
---|---|---|
model | N | 默认: openai:gpt-3.5-turbo. |
temperature | N | 默认:1 |
topP | N | 默认:1 |
frequencyPenalty | N | 默认:0 |
presence_penalty | N | 默认:0 |
stop_sequences | N | 默认:[] |
- 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
默认使用openai:gpt-3.5-turbo