An open API service indexing awesome lists of open source software.

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.

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