acheong08 / ChatGPT-to-API

Scalable unofficial ChatGPT API for production.
1.11k stars 371 forks source link

i still have 404 not found error #97

Closed wqjuser closed 1 year ago

wqjuser commented 1 year ago

I've tried running the project on both my local windows computer and linux server, but both get a 404 page not found error, I don't know how or where it went wrong! Here's the windows log:

cd .\ChatGPT-to-API\ PS G:\ChatGPT-to-API> .\freechatgpt.exe [GIN-debug] [WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.

[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.

[GIN-debug] GET /ping --> main.main.func1 (4 handlers) [GIN-debug] PATCH /admin/password --> main.passwordHandler (5 handlers) [GIN-debug] PATCH /admin/tokens --> main.tokensHandler (5 handlers) [GIN-debug] PATCH /admin/puid --> main.puidHandler (5 handlers) [GIN-debug] PATCH /admin/openai --> main.openaiHandler (5 handlers) [GIN-debug] OPTIONS /v1/chat/completions --> main.optionsHandler (4 handlers) [GIN-debug] POST /v1/chat/completions --> main.nightmare (5 handlers) [GIN-debug] GET /v1/engines --> main.engines_handler (5 handlers) [GIN-debug] GET /v1/models --> main.engines_handler (5 handlers) 2023/07/21 20:56:07 24944 127.0.0.1:8080 [GIN] 2023/07/21 - 20:57:10 | 404 | 0s | 127.0.0.1 | GET "/v1/chat/completions" [GIN] 2023/07/21 - 20:57:10 | 404 | 0s | 127.0.0.1 | GET "/favicon.ico"

Here's the linux log:

./freechatgpt [GIN-debug] [WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.

[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.

[GIN-debug] GET /ping --> main.main.func1 (4 handlers) [GIN-debug] PATCH /admin/password --> main.passwordHandler (5 handlers) [GIN-debug] PATCH /admin/tokens --> main.tokensHandler (5 handlers) [GIN-debug] PATCH /admin/puid --> main.puidHandler (5 handlers) [GIN-debug] PATCH /admin/openai --> main.openaiHandler (5 handlers) [GIN-debug] OPTIONS /v1/chat/completions --> main.optionsHandler (4 handlers) [GIN-debug] POST /v1/chat/completions --> main.nightmare (5 handlers) [GIN-debug] GET /v1/engines --> main.engines_handler (5 handlers) [GIN-debug] GET /v1/models --> main.engines_handler (5 handlers) 2023/07/21 13:07:46 752283 127.0.0.1:8080 [GIN] 2023/07/21 - 13:08:20 | 404 | 2.197µs | 192.9.134.22 | GET "/webapi/v1/chat/completions"

wqjuser commented 1 year ago

I don't know what the problem is.

acheong08 commented 1 year ago

supposed to be POST to /v1/chat/completions

wqjuser commented 1 year ago

supposed to be POST to /v1/chat/completions

it worked thanks