You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add semantic search toggle for gateways (#533)
* feat: add enableSemanticSearch field to gateway schema
Add enableSemanticSearch boolean (default true) to AgentCoreGatewaySchema.
When enabled, the service indexes tool descriptions for natural language
discovery. Update LLM-compacted types and add schema validation tests.
* feat: add initialSelectedIds support to useMultiSelectNavigation
Allow callers to specify pre-selected items and ensure reset() restores
initial selections instead of clearing to empty set.
* feat: add advanced config pane with semantic search toggle to gateway wizard
Add 'advanced-config' step to the gateway creation TUI wizard with a
toggleable checkbox for semantic search (enabled by default). Replace
static AUTHORIZER_NEXT_STEP map with dynamic routing to fix navigation
when unassigned targets exist.
* feat: add --no-semantic-search CLI flag for gateway creation
Wire enableSemanticSearch through GatewayPrimitive, CLI option types,
and the useCreateGateway hook so both TUI and CLI paths persist the
setting to mcp.json.
* refactor: use positive enableSemanticSearch naming internally
Rename noSemanticSearch to enableSemanticSearch in primitive options
and hoist initialSelectedIds array to module-level constant to avoid
new reference on every render.
0 commit comments