Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,14 @@ embed or extract) return `503 {"code": "llm_disabled"}`.

## Build from source

**Prerequisites:** Go ≥ 1.25, Node ≥ 22, and a working C toolchain
(`build-essential` on Debian/Ubuntu, `xcode-select --install` on macOS,
MinGW-w64 / MSYS2 on Windows). Without `gcc` on `PATH`, CGO is silently
disabled and the build fails at the call site with a misleading
`undefined: sqlitevec.LoadInto` rather than a clear toolchain error,
because `internal/sqlitevec/load.go` is gated by `//go:build cgo`. Full
list: [`docs/getting-started.md`](docs/getting-started.md#prerequisites).

```bash
# First time on a connected machine
npm --prefix ui ci # install UI deps
Expand Down
Loading