diff --git a/crates/kebab-app/src/schema.rs b/crates/kebab-app/src/schema.rs index 46841fb..d21e487 100644 --- a/crates/kebab-app/src/schema.rs +++ b/crates/kebab-app/src/schema.rs @@ -32,6 +32,7 @@ pub struct Capabilities { pub http_daemon: bool, pub mcp_server: bool, pub single_file_ingest: bool, + pub bulk_search: bool, } #[derive(Debug, Clone, Serialize, Deserialize)] @@ -123,6 +124,7 @@ fn capabilities_snapshot() -> Capabilities { http_daemon: false, mcp_server: true, single_file_ingest: false, + bulk_search: true, } } diff --git a/docs/wire-schema/v1/schema.schema.json b/docs/wire-schema/v1/schema.schema.json index 0866134..5b46e7e 100644 --- a/docs/wire-schema/v1/schema.schema.json +++ b/docs/wire-schema/v1/schema.schema.json @@ -24,7 +24,7 @@ "required": [ "json_mode", "ingest_progress", "ingest_cancellation", "rag_multi_turn", "search_cache", "incremental_ingest", - "streaming_ask", "http_daemon", "mcp_server", "single_file_ingest" + "streaming_ask", "http_daemon", "mcp_server", "single_file_ingest", "bulk_search" ] }, "models": {