-
I'm trying to set up chat-ui using a remote endpoint that uses the openai API. It is running on Kubernetes, and since we use a self-signed certificate, I also set up port forwarding, mapping Long story short, I can send requests to the server via
But I cannot figure out how to set up the
But whenever I start a conversation, chat-ui gets a 404 error from the server:
This is similar but not quite the same error as #1311 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I finally found it out myself. The endpoint should be |
Beta Was this translation helpful? Give feedback.
I finally found it out myself. The endpoint should be
"http://localhost:8080/openai/v1"
. This was confusing, since the README says that chat-ui usesv1/chat/completions
by default.