mirror of
https://github.com/katanemo/plano.git
synced 2026-04-28 10:26:36 +02:00
* commiting my hr_agent branch * updating the HR agent config * pushing to remote * fix hr agent * committing to merge with main * updating to merge from main * updating the demo and model-server-tests to pull from poetry * updating the poetry.lock files * updating based on feedback * updated sysmte prompt for hr_agent --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local> Co-authored-by: Adil Hafeez <adil@katanemo.com>
23 lines
553 B
YAML
23 lines
553 B
YAML
services:
|
|
api_server:
|
|
build:
|
|
context: .
|
|
environment:
|
|
- SLACK_BOT_TOKEN=${SLACK_BOT_TOKEN:-None}
|
|
ports:
|
|
- "18083:80"
|
|
healthcheck:
|
|
test: ["CMD", "curl" ,"http://localhost:80/healthz"]
|
|
interval: 5s
|
|
retries: 20
|
|
|
|
chatbot_ui:
|
|
build:
|
|
context: ../../chatbot_ui
|
|
ports:
|
|
- "18080:8080"
|
|
environment:
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY:?error}
|
|
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|