Apps: - dwg-rooms: extract room numbers from DWG/DXF - dwg-counting: count symbols in PDF drawings (OpenCV template matching) - contract-check: review PDF contracts against a checklist (Claude vision + Tesseract OCR fallback) - email-drafter: bullet notes → polished Czech/English business emails - invoice-extractor: PDF/image invoice → structured data → Excel - translator: Czech-first translator across 19 languages with tone control - vv-check: find inconsistent unit prices across VV sheets in one workbook - vv-compare: diff original vs new VV files (changes / added / removed) - feature-request: portal users submit ideas + sample files Infrastructure: - LiteLLM gateway with per-app virtual keys + budgets - Langfuse observability - Geist font, shared theme, cross-subdomain back link + theme sync via cookie/URL - Caddy reverse proxy on *.klas.chat
25 lines
536 B
YAML
25 lines
536 B
YAML
services:
|
|
dwg-rooms:
|
|
build: .
|
|
container_name: dwg-rooms
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3025:8000"
|
|
environment:
|
|
LITELLM_BASE_URL: ${LITELLM_BASE_URL:-http://host.docker.internal:4000}
|
|
LITELLM_API_KEY: ${LITELLM_API_KEY:-}
|
|
LLM_MODEL: ${LLM_MODEL:-gpt-4o-mini}
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
networks:
|
|
- localai
|
|
volumes:
|
|
- dwg-rooms-data:/tmp/dwg-rooms
|
|
|
|
volumes:
|
|
dwg-rooms-data:
|
|
|
|
networks:
|
|
localai:
|
|
external: true
|