Add ability to attach images to messages

This commit is contained in:
Saoud Rizwan
2024-08-08 02:44:51 -04:00
parent 9acae31fbb
commit 911dd159cd
16 changed files with 1129 additions and 179 deletions

View File

@@ -10,9 +10,12 @@ export interface WebviewMessage {
| "clearTask"
| "didShowAnnouncement"
| "downloadTask"
| "selectImages"
| "processPastedImages"
text?: string
askResponse?: ClaudeAskResponse
apiConfiguration?: ApiConfiguration
images?: string[]
}
export type ClaudeAskResponse = "yesButtonTapped" | "noButtonTapped" | "textResponse"
export type ClaudeAskResponse = "yesButtonTapped" | "noButtonTapped" | "messageResponse"