You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ends up by returning a timeout error. I am unsure if it's a bug or something I am doing wrong, but the example is simple, so maybe I am missing some parameters. The example is simple, so maybe I am missing some parameters.
curl http://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{ "model": "uncased-sentiment", "messages": [{"role": "user", "content": "It is so good"}] }'
And in the container console I got the following error:
rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:39863: connect: connection refused"
rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:39839: connect: connection refused"
rpc error: code = Unavailable desc = connection error: desc = "transport: Error while dialing: dial tcp 127.0.0.1:33679: connect: connection refused"
```
Any idea why this is happening? The example is a simple, not complicated lifecycle.
### Are you willing to submit PRs to contribute to this bug fix?
- [ ] Yes, I am willing to implement it.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Returns a valid response and not a timeout error
Actual Behavior
Ends up by returning a timeout error. I am unsure if it's a bug or something I am doing wrong, but the example is simple, so maybe I am missing some parameters. The example is simple, so maybe I am missing some parameters.
Running on Docker Engine 20.10.14 on Mac OS.
Steps To Reproduce
Then I build:
docker buildx create --use --name aikit-builder docker buildx build . -t my-model -f aikitfile.yaml --load
Then I start it:
Finally I curl the model:
And in the container console I got the following error:
The text was updated successfully, but these errors were encountered: