New version v2.3.6

This commit is contained in:
2026-03-04 10:19:16 +01:00
parent 65a35cd508
commit 49f842f119
52 changed files with 14034 additions and 358 deletions

View File

@@ -63,6 +63,9 @@ struct Message: Identifiable, Codable, Equatable {
// Tool call details (not persisted in-memory only for expandable display)
var toolCalls: [ToolCallDetail]? = nil
// Reasoning/thinking content (not persisted in-memory only)
var thinkingContent: String? = nil
init(
id: UUID = UUID(),
role: MessageRole,

View File

@@ -45,6 +45,7 @@ struct ModelInfo: Identifiable, Codable, Hashable {
let tools: Bool // Function calling
let online: Bool // Web search
var imageGeneration: Bool = false // Image output
var thinking: Bool = false // Reasoning/thinking tokens
}
struct Architecture: Codable, Hashable {