源码地址:https://github.com/missuo/FreeGPT35

建议在位于美国的服务器上设置环境,其中 image 大约需要 150G 的空间。

1
docker run --rm -p 3344:3040 -d ghcr.io/missuo/freegpt35

试连接

1
2
3
4
5
6
7
8
9
10
curl http://127.0.0.1:3344/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer any_string_you_like"   -d '{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "user",
"content": "Hello!"
}
],
"stream": true
}'

成功连接后,可以使用其他设备进行访问。

请注意,连接可能会时断时续,很费劲。