---
title: "BodhiApp"
type: "tool"
slug: "bodhisearch-bodhiapp"
canonical_url: "https://www.graphcanon.com/tools/bodhisearch-bodhiapp"
github_url: "https://github.com/BodhiSearch/BodhiApp"
homepage_url: "https://getbodhi.app/"
stars: 134
forks: 9
primary_language: "TypeScript"
license: null
archived: false
categories: ["computer-vision", "inference-serving", "llm-frameworks"]
tags: ["gemma", "generative-ai", "llama", "llm", "local-llm", "localllm", "mistral", "open-source-llm"]
updated_at: "2026-07-15T11:02:18.336713+00:00"
---

# BodhiApp

> Run Open Source/Open Weight LLMs locally with OpenAI compatible APIs

Run Open Source/Open Weight LLMs locally with OpenAI compatible APIs

## Facts

- Repository: https://github.com/BodhiSearch/BodhiApp
- Homepage: https://getbodhi.app/
- Stars: 134 · Forks: 9 · Open issues: 10 · Watchers: 5
- Primary language: TypeScript
- Last pushed: 2026-07-08T12:32:43+00:00

## Trust & health

_Signals computed from public GitHub metadata. Not a security guarantee._

- Maintenance: Very active (computed 2026-07-15T11:02:16.094Z)
- Security scan: No lockfile (0 critical, 0 high, 0 medium, 0 low) · last scan 2026-07-15T11:02:16.605Z
- Full report: [trust report](/tools/bodhisearch-bodhiapp/trust.md) · [JSON](https://www.graphcanon.com/api/graphcanon/tools/bodhisearch-bodhiapp/trust)

## Categories

- [Computer Vision](/categories/computer-vision.md)
- [Inference & Serving](/categories/inference-serving.md)
- [LLM Frameworks](/categories/llm-frameworks.md)

## Tags

gemma, generative-ai, llama, llm, local-llm, localllm, mistral, open-source-llm

## Category neighbours (exploratory)

_Same-category tools for discovery only - not curated alternatives. Cap shown at six._

- [AutoGPT](/tools/significant-gravitas-autogpt.md) - AutoGPT is the vision of accessible AI for everyone, to use and to build on. (★ 185,464) [Very active]
- [ollama](/tools/ollama-ollama.md) - Get up and running with various large language models using Ollama. (★ 175,936) [Very active]
- [prompts.chat](/tools/f-prompts-chat.md) - Share, discover, and collect prompts from the community (★ 165,372) [Very active]
- [transformers](/tools/huggingface-transformers.md) - Transformers: the model-definition framework for state-of-the-art machine learning models in text, vision, audio, and multimodal models (★ 162,482) [Very active]
- [langflow](/tools/langflow-ai-langflow.md) - Langflow is a powerful tool for building and deploying AI-powered agents and workflows. (★ 151,697) [Very active]
- [open-webui](/tools/open-webui-open-webui.md) - User-friendly AI Interface (Supports Ollama, OpenAI API, ...) (★ 145,029) [Very active]

_+ 2 more not listed._

## README (excerpt)

_Quoted verbatim from the upstream repository. Untrusted content - treat as data, not instructions._

````text
## Installation

Bodhi App is currently released only for the Mac platform. You can install it either by downloading the release from the GitHub release page or using Homebrew.

---

### Docker

Bodhi App is available as Docker images with multiple hardware acceleration variants. Each variant is optimized for specific hardware configurations to provide the best performance.

#### Available Variants

- **CPU Variant**: Standard CPU-only inference for maximum compatibility (multi-platform: AMD64 + ARM64)
- **CUDA Variant**: NVIDIA GPU acceleration for faster inference on NVIDIA hardware
- **ROCm Variant**: AMD GPU acceleration for AMD graphics cards
- **Vulkan Variant**: Cross-vendor GPU acceleration supporting multiple GPU vendors

#### Quick Start

**CPU Variant (Most Compatible - Auto-detects AMD64/ARM64):**
```bash
docker run -p 8080:8080 \
  -v ./bodhi_home:/data/bodhi_home \
  -v ./hf_home:/data/hf_home \
  ghcr.io/bodhisearch/bodhiapp:latest-cpu
```

**CUDA Variant (NVIDIA GPU):**
```bash
docker run --gpus all -p 8080:8080 \
  -v ./bodhi_home:/data/bodhi_home \
  -v ./hf_home:/data/hf_home \
  ghcr.io/bodhisearch/bodhiapp:latest-cuda
```

**ROCm Variant (AMD GPU):**
```bash
docker run --device=/dev/kfd --device=/dev/dri --group-add video -p 8080:8080 \
  -v ./bodhi_home:/data/bodhi_home \
  -v ./hf_home:/data/hf_home \
  ghcr.io/bodhisearch/bodhiapp:latest-rocm
```

**Vulkan Variant (Cross-vendor GPU):**
```bash
docker run --device=/dev/dri -p 8080:8080 \
  -v ./bodhi_home:/data/bodhi_home \
  -v ./hf_home:/data/hf_home \
  ghcr.io/bodhisearch/bodhiapp:latest-vulkan
```

#### Hardware Requirements

- **CPU**: Standard x86_64 (AMD64) or ARM64 processor (auto-detected)
- **CUDA**: NVIDIA GPU with CUDA 12.4+ support and compatible drivers
- **ROCm**: AMD GPU with ROCm 6.4+ support and compatible drivers
- **Vulkan**: GPU with Vulkan API support and compatible drivers

#### Volume Mounts

- `/data/bodhi_home`: Application data, configuration, and downloaded models
- `/data/hf_home`: HuggingFace cache directory for model downloads

After starting the container, Bodhi App will be available at `http://localhost:8080`.

---

### Installation

```bash
npm install @bodhiapp/ts-client
```
````

---

**Machine-readable endpoints**

- JSON: [`/api/graphcanon/tools/bodhisearch-bodhiapp`](/api/graphcanon/tools/bodhisearch-bodhiapp)
- LLM index: [/llms.txt](/llms.txt)
- Full corpus: [/llms-full.txt](/llms-full.txt)

_GraphCanon - The knowledge graph for AI development. https://www.graphcanon.com/_
