Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"files.associations": {
"*.css": "tailwindcss"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
9 changes: 7 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@
let copied = $state(false);
let isWindows = $state(false);
const installCommand = $derived(
isWindows ? 'irm https://llama.app/install.ps1 | iex' : 'curl -LsSf https://llama.app/install.sh | sh'
isWindows
? 'irm https://llama.app/install.ps1 | iex'
: 'curl -LsSf https://llama.app/install.sh | sh'
);

$effect(() => {
Expand Down Expand Up @@ -155,7 +157,10 @@
><span class="opacity-50"># 1. Serve a model</span>
llama serve

<span class="opacity-50"># 2. Run Pi, it will autodiscover it</span>
<span class="opacity-50"># 2. Install the pi-llama plugin</span>
pi install github.com/huggingface/pi-llama
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
pi install github.com/huggingface/pi-llama
pi install https://github.com/huggingface/pi-llama

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

damn, i copy pasted from the ext's README

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops sorry, I fixed it there too


<span class="opacity-50"># 3. Run Pi, everything is set</span>
pi</code
></pre>
<div
Expand Down
Loading