Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 998 Bytes

README.md

File metadata and controls

47 lines (30 loc) · 998 Bytes

OwnLlama

Welcome to your OwnLlama! To get started with your llama, check out the Getting started section.

Getting started

Prerequisites

You must have Docker installed.

  1. Create the containers
docker run --rm -d --name rag-qdrant -p 6333:6333 -p 6334:6334 -v $(pwd)/qdrant_storage:/qdrant/storage qdrant/qdrant

docker run -d -p 3000:3000 \
    --add-host=host.docker.internal:host-gateway \
    --name OwnLlama \
    --restart always \
    ghcr.io/eliottwantz/ownllama:latest
  1. Open your browser and navigate to http://localhost:3000

Development

Prerequisites

You must have Bun installed.

  1. Clone this repo
git clone https://github.com/eliottwantz/OwnLlama
  1. Create the containers
docker run --rm -d --name rag-qdrant -p 6333:6333 -p 6334:6334 -v $(pwd)/qdrant_storage:/qdrant/storage qdrant/qdrant
  1. Run the development server
bun run dev