git clone https://github.com/aurora-develop/aurora
cd aurora
go build -o aurora
chmod +x ./aurora
./aurora
.env.template中是默认环境变量配置需要的自己改.env后运行
您需要安装Docker和Docker Compose。
docker run -d --name aurora -p 8080:8080 ghcr.io/aurora-develop/aurora:latest
创建一个新的目录,例如aurora-app,并进入该目录:
mkdir aurora
cd aurora
在此目录中下载库中的docker-compose.yml文件:
docker-compose up -d
curl --location 'http://127.0.0.1:8080/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Say this is a test!"}],
"stream": true
}'
https://github.com/xqdoo00o/ChatGPT-to-API
MIT License