25 lines
414 B
Swift
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
|
|
)
|
|
}
|
|
}
|