Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Oct 18, 2024
1 parent 719d62f commit c2bd9a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions examples/python_fullstack/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,19 @@ services:
interval: 5s
timeout: 3s
retries: 5
volumes:
- ./:/opt/app

deploy_workflows:
# Init container, it deploys python_fullstack.yaml and exits
image: llamaindex/llama-deploy:main
volumes:
- ./python_fullstack.yaml:/opt/python_fullstack.yaml
- ./:/opt/app
depends_on:
apiserver:
condition: service_healthy
entrypoint: llamactl -s http://apiserver:4501 -t 20 deploy /opt/python_fullstack.yaml
working_dir: /opt/app
entrypoint: llamactl -s http://apiserver:4501 -t 20 deploy python_fullstack.yaml

frontend:
# UI for this deployment, running at http://localhost:3000
Expand Down
4 changes: 2 additions & 2 deletions examples/python_fullstack/python_fullstack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ services:
name: Agentic Workflow
source:
type: local
name: ./workflows
name: . # TODO: Make this relative to the deployment file
path: workflows:agentic_w

rag_workflow:
name: RAG Workflow
source:
type: local
name: ./workflows
name: . # TODO: Make this relative to the deployment file
path: workflows:rag_w

0 comments on commit c2bd9a7

Please sign in to comment.