Files
2026-07-13 13:33:03 +08:00

25 lines
414 B
Swift

//
// LLMChatImage.swift
// MNNLLMiOS
//
// Created by 游薪渝(揽清) on 2025/1/15.
//
import ExyteChat
import SwiftUI
struct LLMChatImage: Codable, Hashable {
let id: String
let thumbnail: URL
let full: URL
func toChatAttachment() -> Attachment {
Attachment(
id: id,
thumbnail: thumbnail,
full: full,
type: .image
)
}
}