feat(tui): use canonical prompt attachments

This commit is contained in:
Dax Raad 2026-07-06 14:34:57 -04:00
commit c13f06c30c
24 changed files with 611 additions and 466 deletions

View file

@ -3264,6 +3264,7 @@ export type PromptSource = {
export type PromptFileAttachment = {
uri: string
mime: string
content?: string
name?: string
description?: string
source?: PromptSource
@ -7903,6 +7904,7 @@ export type PromptInputV2 = {
export type PromptFileAttachment2 = {
uri: string
mime: string
content?: string
name?: string
description?: string
source?: PromptSource2