| 12345678910111213141516171819 |
- name: QuickStart
- control-plane:
- port: 8000
- default-service: echo_workflow
- services:
- echo_workflow:
- name: Echo Workflow
- # We tell LlamaDeploy where to look for our workflow
- source:
- # In this case, we instruct LlamaDeploy to look in the local filesystem
- type: local
- # The path in the local filesystem where to look. This assumes there's an src folder in the
- # current working directory containing the file workflow.py we created previously
- name: ./
- # This assumes the file workflow.py contains a variable called `echo_workflow` containing our workflow instance
- path: single_flow:echo_workflow
|