Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions www/src/lib/components/download-dropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import { IsMobile } from '$lib/hooks/is-mobile.svelte';

const CLI_RELEASE_URL =
'https://github.com/microsoft/Foundry-Local/releases/tag/cli-preview-0.10.0';
'https://github.com/microsoft/Foundry-Local/releases';

interface Props {
variant?: 'default' | 'ghost' | 'outline';
Expand Down Expand Up @@ -195,7 +195,7 @@
<span class="mt-0.5 inline-flex shrink-0" aria-hidden="true">{@html item.icon}</span>
<div class="flex flex-1 flex-col gap-1 px-2">
<span class="font-medium">{item.label}</span>
<code class="text-muted-foreground text-xs break-all">cli-preview-0.10.0 on GitHub</code>
<code class="text-muted-foreground text-xs break-all">GitHub releases</code>
</div>
<ExternalLink class="size-4 shrink-0 opacity-50" aria-hidden="true" />
</a>
Expand Down
2 changes: 1 addition & 1 deletion www/src/routes/models/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
const MODEL_QUERY_PARAM = 'model';
const CLI_RUN_COMMAND = 'foundry run qwen2.5-0.5b';
const CLI_RELEASE_URL =
'https://github.com/microsoft/Foundry-Local/releases/tag/cli-preview-0.10.0';
'https://github.com/microsoft/Foundry-Local/releases';
const CLI_INSTALL_LINKS = [
{
id: 'windows-cli',
Expand Down
Loading