Skip to content

Commit 935510f

Browse files
committed
AI Provider and Installer SEtup
1 parent 3269b8b commit 935510f

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

src/renderer/src/assets/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ body {
733733
grid-template-columns: repeat(4, 1fr);
734734
gap: 10px;
735735
width: 100%;
736-
max-width: 580px;
736+
max-width: 620px;
737737
margin-bottom: 32px;
738738
}
739739

src/renderer/src/screens/Setup/Setup.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { ArrowRight, ExternalLink } from "../../assets/icons";
33
import { PROVIDERS, LOCAL_PRESETS } from "../../constants";
44
import { useI18n } from "../../components/useI18n";
55
import VerifyWarningBanner from "../../components/VerifyWarningBanner";
6+
import BrandLogo from "../../components/common/BrandLogo";
67

78
interface SetupProps {
89
onComplete: () => void;
@@ -108,8 +109,8 @@ function Setup({
108109
setError("");
109110
}}
110111
>
112+
<BrandLogo provider={p.id} size={24} matchTheme={true} />
111113
<div className="setup-provider-name">{t(p.name)}</div>
112-
<div className="setup-provider-desc">{t(p.desc)}</div>
113114
{p.tag && <div className="setup-provider-tag">{t(p.tag)}</div>}
114115
</button>
115116
))}

src/shared/i18n/locales/en/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ export default {
44
// Provider setup cards
55
openrouterName: "OpenRouter",
66
openrouterDesc: "200+ models",
7-
openrouterTag: "Recommended",
7+
openrouterTag: "",
88
anthropicName: "Anthropic",
99
anthropicDesc: "Claude models",
1010
openaiName: "OpenAI",
1111
openaiDesc: "GPT & Codex models",
12-
openaiCodexName: "OpenAI Codex CLI",
12+
openaiCodexName: "Codex CLI",
1313
openaiCodexDesc: "Uses your Codex OAuth login",
14-
openaiCodexTag: "No API key",
14+
openaiCodexTag: "",
1515
googleName: "Google AI Studio",
1616
googleDesc: "Gemini models",
1717
xaiName: "xAI (Grok)",

0 commit comments

Comments
 (0)