2.4.3 #9

Merged
rune merged 14 commits from 2.4.3 into main 2026-07-27 08:13:22 +02:00
3 changed files with 12 additions and 2 deletions
Showing only changes of commit 377e783a17 - Show all commits
+2 -2
View File
@@ -42,8 +42,8 @@ final class AppleFoundationProvider: AIProvider {
[
ModelInfo(
id: "apple-on-device",
name: "Apple On-Device",
description: "On-device Apple Intelligence model. Private, free, and works offline. 4K context window.",
name: "Apple On-Device (Beta)",
description: "On-device Apple Intelligence model. Private, free, and works offline. 4K context window. Apple's Foundation Models framework is still in active beta (currently macOS 27 beta) — expect occasional generation errors and rough edges.",
contextLength: 4096,
pricing: ModelInfo.Pricing(prompt: 0, completion: 0),
capabilities: ModelInfo.ModelCapabilities(
+3
View File
@@ -85,6 +85,9 @@ struct CreditsView: View {
Text("On-device and free — no credits or API key needed.")
.font(.body)
.foregroundColor(.secondary)
Text("⚠️ Beta — Apple's Foundation Models framework is still in active development.")
.font(.caption)
.foregroundColor(.secondary)
Image(systemName: "apple.logo")
.font(.system(size: 40))
.foregroundColor(.secondary)
+7
View File
@@ -340,6 +340,13 @@ It's better to admit "I need more information" or "I cannot do that" than to fak
}
}
}
VStack(alignment: .leading, spacing: 2) {
Text("⚠️ Beta — Apple's on-device model is still in active development (currently macOS 27 beta). Expect rough edges: a small 4K context window, occasional generation errors, and no tool support yet.")
.font(.caption)
.foregroundStyle(.secondary)
}
.padding(.horizontal, 12)
.padding(.bottom, 8)
}
}