mirror of
https://github.com/katanemo/plano.git
synced 2026-05-10 08:12:48 +02:00
risk agent with deterministic flow
This commit is contained in:
parent
ab391f96c7
commit
12d5907423
16 changed files with 2142 additions and 0 deletions
28
demos/use_cases/credit_risk_case_copilot/Dockerfile
Normal file
28
demos/use_cases/credit_risk_case_copilot/Dockerfile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install system dependencies
|
||||
RUN apt-get update && \
|
||||
apt-get install -y bash curl && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install uv package manager
|
||||
RUN pip install --no-cache-dir uv
|
||||
|
||||
# Copy dependency files
|
||||
COPY pyproject.toml README.md* ./
|
||||
COPY scenarios/ ./scenarios/
|
||||
|
||||
# Install dependencies
|
||||
RUN uv sync --no-dev || uv pip install --system -e .
|
||||
|
||||
# Copy application code
|
||||
COPY src/ ./src/
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
ENV PYTHONPATH=/app
|
||||
|
||||
# Default command (overridden in docker-compose)
|
||||
CMD ["uv", "run", "python", "src/credit_risk_demo/risk_crew_agent.py"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue