Open Ashye opened 7 months ago
curl http://127.0.0.1:3040/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 }'
get a empty response with: data: {"id":"chatcmpl-**","created":1713965171742,"object":"chat.completion.chunk","model":"gpt-3.5-turbo","choices":[{"delta":{"content":""},"index":0,"finish_reason":"stop"}]}
I met the same problem, it seems that https://chat.openai.com/backend-anon/sentinel/chat-requirements is not working...
https://chat.openai.com/backend-anon/sentinel/chat-requirements
try to use my new repo: https://github.com/missuo/FreeDuckDuckGo
curl http://127.0.0.1:3040/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 }'
get a empty response with: data: {"id":"chatcmpl-**","created":1713965171742,"object":"chat.completion.chunk","model":"gpt-3.5-turbo","choices":[{"delta":{"content":""},"index":0,"finish_reason":"stop"}]}