v1.0.0-beta

Your Local AI
Operating System.

A desktop-native, privacy-first, open-source interface for your local models. No cloud required. Not a single byte leaves your machine.

IZ
Can you analyze my current project context and suggest a docker-compose.yml file that includes a Postgres database and a Redis instance for local development?

I can help with that. Based on a standard full-stack setup, here is a docker-compose.yml that provides both a PostgreSQL database and a Redis instance. This configuration maps the default ports to your host machine and persists the database data using a Docker volume.

yaml
version: '3.8'
services:
  db:
    image: postgres:15-alpine
    environment:
      POSTGRES_USER: devuser
      POSTGRES_PASSWORD: devpassword
      POSTGRES_DB: myapp_db
    ports:
      - "5432:5432"
    volumes:
      - pgdata:/var/lib/postgresql/data

  redis:
    image: redis:7-alpine
    ports:
      - "6379:6379"

volumes:
  pgdata:
01

Absolute Privacy

Air-gapped by design. No telemetry, no usage tracking, no forced accounts. Your prompts and data never leave your local hardware.

02

Desktop Native

Built from the ground up for performance. Leverages Metal on macOS and CUDA on Windows/Linux for maximum inference speed.

03

Radically Open

Completely open-source under the AGPLv3 license. Inspect the code, compile it yourself, or build extensions to suit your workflow.

04

Model Agnostic

Drop in any GGUF file. Supports Llama, Mistral, Qwen, and hundreds of other open-weight models directly from HuggingFace.