Skip to content

Commit fc6bbc0

Browse files
Apply suggestion from @gemini-code-assist[bot]
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 52a638b commit fc6bbc0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

workspace-server/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ async function main() {
167167
{
168168
description: 'Creates a new folder in Google Drive.',
169169
inputSchema: {
170-
name: z.string().describe('The name of the new folder.'),
171-
parentId: z.string().optional().describe('The ID of the parent folder. If not provided, creates in the root directory.'),
170+
name: z.string().trim().min(1).describe('The name of the new folder.'),
171+
parentId: z.string().trim().min(1).optional().describe('The ID of the parent folder. If not provided, creates in the root directory.'),
172172
}
173173
},
174174
driveService.createFolder

0 commit comments

Comments
 (0)