gitextract_hp6s2jka/ ├── .github/ │ ├── actions/ │ │ └── image_builder/ │ │ └── action.yaml │ └── workflows/ │ ├── cd.yaml │ ├── cd_prd.yaml │ └── ci.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── act.env.example ├── agent.py ├── api.py ├── assistant_templates.yaml ├── auth/ │ ├── auth.py │ ├── auth_utils.py │ └── cognito/ │ └── JWTBearer.py ├── bin/ │ └── dockerize ├── bots/ │ ├── __init__.py │ ├── bot_extension.py │ ├── bot_loading_util.py │ ├── ff.yaml │ └── mam.tf ├── docker-compose.yml ├── entrypoint.sh ├── examples/ │ ├── level_1/ │ │ ├── level_1_pdf_vectorstore_dlt_etl.py │ │ └── ticket_schema.json │ ├── level_2/ │ │ ├── Dockerfile │ │ ├── Readme.md │ │ ├── api.py │ │ ├── docker-compose.yml │ │ ├── entrypoint.sh │ │ ├── level_2_pdf_vectorstore__dlt_contracts.py │ │ ├── pyproject.toml │ │ └── schema_registry/ │ │ └── ticket_schema.json │ └── simple_ETLs.py ├── extensions/ │ ├── __init__.py │ ├── argparseext.py │ └── dotenvext.py ├── fetch_secret.py ├── fixtures/ │ ├── choose_meal_tree_response.json │ ├── goal_response.json │ ├── recipe_response.json │ ├── subgoal_response.json │ └── update_meal_tree_response.json ├── food_scrapers/ │ └── wolt_tool.py ├── heuristic_experience_orchestrator/ │ ├── README.md │ └── task_identification.py ├── initdb/ │ └── init.sql ├── llm_chains/ │ ├── __init__.py │ └── chains.py ├── pyproject.toml ├── test_api.py ├── utils/ │ ├── load_prod_redis.py │ └── utils.py └── validations/ ├── defaults/ │ ├── categories_defaults.json │ └── categories_input_defaults.json └── schema/ ├── decompose_categories.json └── decompose_categories_input.json