fix: update LLMRouter callers after API refactor to use NewLLMRouterDefault
ci / test (push) Successful in 1m44s

This commit is contained in:
Test
2026-09-03 09:42:56 -07:00
parent 0d70da4f31
commit e8984b055c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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)
}