mirror of
https://github.com/katanemo/plano.git
synced 2026-04-29 19:06:34 +02:00
* Comitting to bring in main * insurance agent updated * updated the insurance agent --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local>
22 lines
534 B
YAML
22 lines
534 B
YAML
services:
|
|
api_server:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "18083:80"
|
|
healthcheck:
|
|
test: ["CMD", "curl" ,"http://localhost:80/healthz"]
|
|
interval: 5s
|
|
retries: 20
|
|
|
|
chatbot_ui:
|
|
build:
|
|
context: ../../chatbot_ui
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "18090:8080"
|
|
environment:
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY:?error}
|
|
- MISTRAL_API_KEY=${MISTRAL_API_KEY:?error}
|
|
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|