From 2fc4d513893d37c8cf44a91230f82552e1207541 Mon Sep 17 00:00:00 2001 From: centdix Date: Sat, 31 May 2025 12:56:06 +0200 Subject: [PATCH] fix --- backend/windmill-api/src/lib.rs | 2 +- frontend/src/lib/components/chat/GlobalChat.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/windmill-api/src/lib.rs b/backend/windmill-api/src/lib.rs index ab4097ffda..5e38903162 100644 --- a/backend/windmill-api/src/lib.rs +++ b/backend/windmill-api/src/lib.rs @@ -580,7 +580,7 @@ pub async fn run_server( .nest("/schedules", schedule::global_service()) .nest("/embeddings", embeddings::global_service()) .nest("/ai", ai::global_service()) - .nest("/inkeep", inkeep::global_service()) + .nest("/inkeep", inkeep_ee::global_service()) .route_layer(from_extractor::()) .route_layer(from_extractor::()) .nest("/jobs", jobs::global_root_service()) diff --git a/frontend/src/lib/components/chat/GlobalChat.svelte b/frontend/src/lib/components/chat/GlobalChat.svelte index 33d4a44fc2..d8f45fc9ab 100644 --- a/frontend/src/lib/components/chat/GlobalChat.svelte +++ b/frontend/src/lib/components/chat/GlobalChat.svelte @@ -1,7 +1,7 @@