We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e540f5f commit 58de276Copy full SHA for 58de276
1 file changed
apps/sim/lib/copilot/vfs/serializers.ts
@@ -286,6 +286,8 @@ export function serializeFileMeta(file: {
286
contentType: file.contentType,
287
size: file.size,
288
uploadedAt: file.uploadedAt.toISOString(),
289
+ readContentWith: file.vfsPath ? `${file.vfsPath}/content` : undefined,
290
+ note: 'This is file metadata only. To read the file text/bytes, read the readContentWith path (i.e. append /content).',
291
},
292
null,
293
2
0 commit comments