fix(visibility): updated visibility for non-sensitive tool params from user only to user or llm (#3095)

* fix(visibility): updated visibility for non-sensitive tool params from user only to user or llm

* update docs

* updated docs script
This commit is contained in:
Waleed
2026-01-31 11:31:08 -08:00
committed by GitHub
parent e11758fb43
commit 6cb3977dd9
948 changed files with 5581 additions and 5042 deletions

View File

@@ -31,32 +31,33 @@ export const gmailReadTool: ToolConfig<GmailReadParams, GmailToolResponse> = {
messageId: {
type: 'string',
required: false,
visibility: 'user-only',
description: 'ID of the message to read',
visibility: 'user-or-llm',
description: 'Gmail message ID to read (e.g., 18f1a2b3c4d5e6f7)',
},
folder: {
type: 'string',
required: false,
visibility: 'user-only',
description: 'Folder/label to read emails from',
visibility: 'user-or-llm',
description:
'Folder/label to read emails from (e.g., INBOX, SENT, DRAFT, TRASH, SPAM, or custom label name)',
},
unreadOnly: {
type: 'boolean',
required: false,
visibility: 'user-only',
description: 'Only retrieve unread messages',
visibility: 'user-or-llm',
description: 'Set to true to only retrieve unread messages',
},
maxResults: {
type: 'number',
required: false,
visibility: 'user-only',
visibility: 'user-or-llm',
description: 'Maximum number of messages to retrieve (default: 1, max: 10)',
},
includeAttachments: {
type: 'boolean',
required: false,
visibility: 'user-only',
description: 'Download and include email attachments',
visibility: 'user-or-llm',
description: 'Set to true to download and include email attachments',
},
},

View File

@@ -36,8 +36,8 @@ export const gmailSearchTool: ToolConfig<GmailSearchParams, GmailToolResponse> =
maxResults: {
type: 'number',
required: false,
visibility: 'user-only',
description: 'Maximum number of results to return',
visibility: 'user-or-llm',
description: 'Maximum number of results to return (e.g., 10, 25, 50)',
},
},