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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: echo "basePath=${{ github.event.repository.name }}" >> $GITHUB_ENV

- name: Build
run: npm run build:prod -- --base=/${{ env.basePath }}
run: npm run build:prod

- name: Deploy
uses: peaceiris/actions-gh-pages@v4
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"detail": "tsc -b && vite build",
"type": "shell",
"command": "npm",
"args": ["run", "build", "--", "--base", "/llama.ui"],
"args": ["run", "build"],
"group": "build",
"problemMatcher": ["$eslint-stylish"]
},
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This repository is a fork of [llama.cpp](https://github.com/ggml-org/llama.cpp)

### 💻 Standalone Mode (Zero Installation)

1. ✨ Open our [hosted UI instance](https://olegshulyakov.github.io/llama.ui/)
1. ✨ Open our [hosted UI instance](https://llama-ui.js.org/)
2. ⚙️ Click the gear icon → General settings
3. 🌐 Set "Base URL" to your local llama.cpp server (e.g. `http://localhost:8080`)
4. 🎉 Start chatting with your AI!
Expand Down
11 changes: 4 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,14 @@
property="og:description"
content="A minimal Interface for AI Companion that runs entirely in your browser."
/>
<meta
property="og:url"
content="https://olegshulyakov.github.io/llama.ui/"
/>
<meta property="og:url" content="https://llama-ui.js.org/" />
<meta
property="og:image"
content="https://olegshulyakov.github.io/llama.ui/screenshots/desktop.png"
content="https://llama-ui.js.org/screenshots/desktop.png"
/>
<meta
property="og:image:secure_url"
content="https://olegshulyakov.github.io/llama.ui/screenshots/desktop.png"
content="https://llama-ui.js.org/screenshots/desktop.png"
/>
<meta property="og:site_name" content="llama.ui" />

Expand All @@ -50,7 +47,7 @@
/>
<meta
name="twitter:image"
content="https://olegshulyakov.github.io/llama.ui/screenshots/desktop.png"
content="https://llama-ui.js.org/screenshots/desktop.png"
/>

<!-- Favicon -->
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "llama.ui",
"private": true,
"name": "llama.ui",
"description": "A minimal Interface for AI Companion that runs entirely in your browser.",
"version": "2.18.0",
"homepage": "https://llama-ui.js.org/",
"license": "MIT",
"type": "module",
"scripts": {
"prestart": "npm run format",
Expand Down Expand Up @@ -64,5 +67,9 @@
"semi": true,
"singleQuote": true,
"bracketSameLine": false
},
"repository": {
"type": "git",
"url": "https://github.com/olegshulyakov/llama.ui.git"
}
}