Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 658b046

Browse files
committed
Rename product to ML Intern in frontend
Update page title, app header, welcome screen title, and the iframe 'Open' step labels from ML Agent to ML Intern.
1 parent a67b60f commit 658b046

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

β€Žfrontend/index.htmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/webp" href="/smolagents.webp" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>ML Agent</title>
7+
<title>ML Intern</title>
88
<link rel="preconnect" href="https://fonts.googleapis.com" />
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
1010
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />

β€Žfrontend/src/components/Layout/AppLayout.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export default function AppLayout() {
244244
fontSize: { xs: '0.88rem', md: '0.95rem' },
245245
}}
246246
>
247-
ML Agent
247+
ML Intern
248248
</Typography>
249249
</Box>
250250

β€Žfrontend/src/components/WelcomeScreen/WelcomeScreen.tsxβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export default function WelcomeScreen() {
271271
const joinOrgStatus: StepStatus = isOrgMember ? 'completed' : isAuthenticated ? 'active' : 'locked';
272272
const startStatus: StepStatus = isAuthenticated && isOrgMember ? 'active' : 'locked';
273273

274-
// Space URL for iframe "Open ML Agent" step
274+
// Space URL for iframe "Open ML Intern" step
275275
const spaceHost =
276276
typeof window !== 'undefined'
277277
? window.location.hostname.includes('.hf.space')
@@ -311,7 +311,7 @@ export default function WelcomeScreen() {
311311
fontSize: { xs: '1.8rem', md: '2.4rem' },
312312
}}
313313
>
314-
ML Agent
314+
ML Intern
315315
</Typography>
316316

317317
{/* Description */}
@@ -328,7 +328,7 @@ export default function WelcomeScreen() {
328328
'& strong': { color: 'var(--text)', fontWeight: 600 },
329329
}}
330330
>
331-
Your <strong>ML intern</strong>. It reads <strong>papers</strong>, finds <strong>datasets</strong>, trains <strong>models</strong>, and iterates until the numbers go up. Instructions in. Trained model out.
331+
Your personal <strong>ML agent</strong>. It reads <strong>papers</strong>, finds <strong>datasets</strong>, trains <strong>models</strong>, and iterates until the numbers go up. Instructions in. Trained model out.
332332
</Typography>
333333

334334
{/* ── Checklist ──────────────────────────────────────────── */}
@@ -370,11 +370,11 @@ export default function WelcomeScreen() {
370370
/>
371371
<ChecklistStep
372372
stepNumber={2}
373-
title="Open ML Agent"
373+
title="Open ML Intern"
374374
description="Open the agent in a full browser tab to get started."
375375
status={isOrgMember ? 'active' : 'locked'}
376376
lockedReason="Join the organization first."
377-
actionLabel="Open ML Agent"
377+
actionLabel="Open ML Intern"
378378
actionIcon={<OpenInNewIcon sx={{ fontSize: 16 }} />}
379379
actionHref={spaceHost}
380380
isLast

0 commit comments

Comments
Β (0)