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
description: 'Read, write, or delete workspace files',
250
+
description: 'Read and write workspace files',
251
251
longDescription:
252
-
'Read and parse files from uploads or URLs, write new or update existing workspace resource files (with optional append), or delete workspace files.',
252
+
'Read and parse files from uploads or URLs, or write workspace resource files. Writing by name creates the file if it does not exist, or overwrites it if it does. Use append mode to add content to existing files.',
'Write content to a workspace resource file. Provide fileName to create a new file, or fileId to update an existing one. Use append mode to add content to the end of an existing file.',
16
+
'Write content to a workspace resource file. Provide fileName to create a new file or overwrite an existing one with the same name. Provide fileId to update a specific file. Use append mode to add content to the end instead of replacing.',
17
17
version: '1.0.0',
18
18
19
19
params: {
20
20
fileName: {
21
21
type: 'string',
22
22
required: false,
23
23
visibility: 'user-or-llm',
24
-
description: 'Name for a new file (e.g., "data.csv"). Provide this to create a new file.',
24
+
description:
25
+
'File name (e.g., "data.csv"). Creates the file if it does not exist, or overwrites/appends to it if it does.',
0 commit comments