gitextract_415u4r91/ ├── .github/ │ └── workflows/ │ └── deploy-pages.yml ├── .gitignore ├── .gitkeep ├── README.md ├── backend/ │ ├── Dockerfile │ ├── app/ │ │ ├── __init__.py │ │ ├── api/ │ │ │ └── workflows.py │ │ ├── core/ │ │ │ ├── config.py │ │ │ └── logging.py │ │ ├── graph/ │ │ │ └── workflow.py │ │ ├── main.py │ │ ├── schemas/ │ │ │ └── workflow.py │ │ └── services/ │ │ ├── llm_service.py │ │ └── vector_store.py │ ├── pyproject.toml │ └── tests/ │ └── test_health.py ├── docker-compose.yml └── frontend/ ├── Dockerfile ├── next.config.mjs ├── package.json ├── src/ │ ├── app/ │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── styles.css │ ├── components/ │ │ └── WorkflowForm.tsx │ ├── lib/ │ │ └── api.ts │ └── types/ │ └── workflow.ts └── tsconfig.json