fmaclen / hollama

A minimal web-UI for talking to Ollama servers

Home Page:https://hollama.fernando.is

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hollama

A minimal web-UI for talking to Ollama servers.

Features

  • Large prompt fields with code editor features
  • Markdown parsing w/syntax highlighting
  • Easily copy markdown as raw text
  • "Knowledge" lets you add context to sessions
  • Saves all changes on your browser's localStorage
  • Streams completions

Live demo

Tip

The latest version of Hollama is available at: https://hollama.fernando.is

No sign up is required and data is 100% stored locally on your browser.

session knowledge session-new settings

Self-host (Docker)

To host your own Hollama server, install Docker and run the command below in your favorite terminal:

docker run --rm -d -p 4173:4173 ghcr.io/fmaclen/hollama:latest 

Then visit http://localhost:4173.

Connecting to an Ollama server

If you are using the publicly hosted version or your Docker server is on a separate device than the Ollama server you'll have to set the domain in OLLAMA_ORIGINS. Learn more in Ollama's docs.

OLLAMA_ORIGINS=https://hollama.fernando.is ollama serve

Developing

Install dependencies with npm install, start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

About

A minimal web-UI for talking to Ollama servers

https://hollama.fernando.is

License:MIT License


Languages

Language:TypeScript 51.8%Language:Svelte 40.8%Language:JavaScript 4.9%Language:CSS 1.8%Language:HTML 0.4%Language:Dockerfile 0.2%