sigle_flow.yaml 647 B

12345678910111213141516171819
  1. name: QuickStart
  2. control-plane:
  3. port: 8000
  4. default-service: echo_workflow
  5. services:
  6. echo_workflow:
  7. name: Echo Workflow
  8. # We tell LlamaDeploy where to look for our workflow
  9. source:
  10. # In this case, we instruct LlamaDeploy to look in the local filesystem
  11. type: local
  12. # The path in the local filesystem where to look. This assumes there's an src folder in the
  13. # current working directory containing the file workflow.py we created previously
  14. name: ./
  15. # This assumes the file workflow.py contains a variable called `echo_workflow` containing our workflow instance
  16. path: single_flow:echo_workflow