From c1883362264c4638dc1205f09cf57202614226e1 Mon Sep 17 00:00:00 2001 From: Yevgeny Kulikov <86586195+justgithubaccount@users.noreply.github.com> Date: Fri, 8 Aug 2025 09:41:57 +0300 Subject: [PATCH] fix: correct crew config path --- apps/chat/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/chat/app/main.py b/apps/chat/app/main.py index 2f3c232..bece8ee 100644 --- a/apps/chat/app/main.py +++ b/apps/chat/app/main.py @@ -55,7 +55,7 @@ async def load_behavior(): async def load_crew(): enrich_context(event="startup_crew_start").info("Starting crew loading") try: - yaml_path = os.path.join(os.path.dirname(__file__), "infra_cluster.yaml") + yaml_path = os.path.join(os.path.dirname(__file__), "..", "crew-infra-cluster.yaml") if os.path.exists(yaml_path): app.state.crew = Crew.load(yaml_path) enrich_context(event="crew_loaded", file=yaml_path).info("Crew loaded from YAML")