Skip to content

Commit f7f0a79

Browse files
committed
refactor(search): update visibility settings for retrieval strategy and query options to allow access for both users and LLMs
1 parent bbe1c65 commit f7f0a79

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

apps/sim/tools/airweave/search.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ export const airweaveSearchTool: ToolConfig<AirweaveSearchParams, AirweaveSearch
3737
retrievalStrategy: {
3838
type: 'string',
3939
required: false,
40-
visibility: 'user-only',
40+
visibility: 'user-or-llm',
4141
description: 'Retrieval strategy: hybrid (default), neural, or keyword',
4242
},
4343
expandQuery: {
4444
type: 'boolean',
4545
required: false,
46-
visibility: 'user-only',
46+
visibility: 'user-or-llm',
4747
description: 'Generate query variations to improve recall',
4848
},
4949
rerank: {
5050
type: 'boolean',
5151
required: false,
52-
visibility: 'user-only',
52+
visibility: 'user-or-llm',
5353
description: 'Reorder results for improved relevance using LLM',
5454
},
5555
generateAnswer: {
5656
type: 'boolean',
5757
required: false,
58-
visibility: 'user-only',
58+
visibility: 'user-or-llm',
5959
description: 'Generate a natural-language answer to the query',
6060
},
6161
},

0 commit comments

Comments
 (0)