diff --git a/action/router.go b/action/router.go index ed9bcc6..276017b 100644 --- a/action/router.go +++ b/action/router.go @@ -20,7 +20,7 @@ func LLMRouterActivity(ctx context.Context, input routing.LLMRouterInput) (*rout } // Create router - router, err := routing.NewLLMRouter(kb) + router, err := routing.NewLLMRouterDefault(kb) if err != nil { return nil, fmt.Errorf("failed to create router: %w", err) } diff --git a/cmd/starter/main.go b/cmd/starter/main.go index a342015..8f47413 100644 --- a/cmd/starter/main.go +++ b/cmd/starter/main.go @@ -218,7 +218,7 @@ func runRoutingWorkflow(c client.Client, routeMsg, specFile string, isCron, dryR logging.Fatal("failed to load knowledge base", logging.Err(err)) } - router, err := routing.NewLLMRouter(kb) + router, err := routing.NewLLMRouterDefault(kb) if err != nil { logging.Fatal("failed to create LLM router", logging.Err(err)) } diff --git a/k8s/git-commit.yaml b/k8s/git-commit.yaml index b09ea4a..44ceb21 100644 --- a/k8s/git-commit.yaml +++ b/k8s/git-commit.yaml @@ -9,6 +9,6 @@ metadata: app.kubernetes.io/name: poimen app.kubernetes.io/component: orchestrator data: - GIT_COMMIT: "ca0a9376" # Updated automatically by CI/CD + GIT_COMMIT: "9b8a4bc6" # Updated automatically by CI/CD GIT_BRANCH: "main" DEPLOYMENT_DATE: "2026-09-03" diff --git a/k8s/worker-deployment.yaml b/k8s/worker-deployment.yaml index 5984fe6..bbb3803 100644 --- a/k8s/worker-deployment.yaml +++ b/k8s/worker-deployment.yaml @@ -13,7 +13,7 @@ spec: labels: app: poimen-worker annotations: - git-commit: "ca0a9376" # ✅ Updated on each push, triggers rolling restart + git-commit: "9b8a4bc6" # ✅ Updated on each push, triggers rolling restart deployment-date: "2026-09-03" spec: containers: