https://github.com/varppi/webllama
An easy way to self host a LLM AI chat website.
https://github.com/varppi/webllama
Last synced: 10 months ago
JSON representation
An easy way to self host a LLM AI chat website.
- Host: GitHub
- URL: https://github.com/varppi/webllama
- Owner: varppi
- License: gpl-3.0
- Created: 2024-08-25T13:25:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-09T07:28:57.000Z (10 months ago)
- Last Synced: 2025-08-09T08:51:22.518Z (10 months ago)
- Language: CSS
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebLLama
Webllama is a minimal self hostable web interface for the ollama project.
# Installation and usage
1. Install ollama from https://ollama.com/
2.
```
git clone https://github.com/Varppi/webllama
cd webllama/
npm i
npm run build
ollama pull dolphin-llama3 #or whatever model you want to use
npm run start
```
3. Start ollama API with `ollama serve`
4. Navigate to http://localhost:3000
# Configuring
If you want to change the model, edit webllama.json in the project root.
Default:
```json
{
"model": "dolphin-llama3"
}
```
# Screenshots