mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 08:46:24 +02:00
* fixed issue with groq LLMs that require the openai in the /v1/chat/completions path. My first change * updated the GH actions with keys for Groq * adding missing groq API keys * add llama-3.2-3b-preview to the model based on addin groq to the demo --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-261.local>
23 lines
629 B
YAML
23 lines
629 B
YAML
services:
|
|
weather_forecast_service:
|
|
build:
|
|
context: ./
|
|
environment:
|
|
- OLTP_HOST=http://jaeger:4317
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "18083:80"
|
|
|
|
chatbot_ui:
|
|
build:
|
|
context: ../../shared/chatbot_ui
|
|
ports:
|
|
- "18080:8080"
|
|
environment:
|
|
# this is only because we are running the sample app in the same docker container environemtn as archgw
|
|
- CHAT_COMPLETION_ENDPOINT=http://host.docker.internal:10000/v1
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
volumes:
|
|
- ./arch_config.yaml:/app/arch_config.yaml
|