go build -o aurora
chmod +x ./aurora
./aurora
docker run -d --name aurora -p 8080:8080 ghcr.io/aurora-develop/aurora:latest
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