From 8db7820de212276118554ba423daeb57e4667968 Mon Sep 17 00:00:00 2001 From: Rune Olsen Date: Thu, 30 Jul 2026 09:43:57 +0200 Subject: [PATCH] Replace Jarvis API key hint with an oAI-Web blurb and Gitea link --- oAI/Views/Screens/SettingsView.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oAI/Views/Screens/SettingsView.swift b/oAI/Views/Screens/SettingsView.swift index 14755d7..b9479d9 100644 --- a/oAI/Views/Screens/SettingsView.swift +++ b/oAI/Views/Screens/SettingsView.swift @@ -2524,10 +2524,11 @@ It's better to admit "I need more information" or "I cannot do that" than to fak } VStack(alignment: .leading, spacing: 4) { - Text("Generate an API key in your Jarvis settings and paste it above.") + Text("Jarvis is oAI-Web, a self-hosted companion server that lets oAI sync and connect remotely.") + .foregroundStyle(.secondary) + Link("→ Jarvis / oAI-Web on Gitea", destination: URL(string: "https://gitlab.pm/rune/oai-web")!) } .font(.system(size: 13)) - .foregroundStyle(.secondary) .padding(.horizontal, 4) } }