Go to file
mirivlad 4a84ada770 Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
config Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
docs Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
duck_core Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
prompts/roles Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
scripts Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
skills/analyze_project Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
tests/smoke Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
.gitignore Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
Ducklm.md Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
Makefile Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
README.md Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
docker-compose.memory.yml Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
favicon.ico fixes 2026-05-17 23:09:56 +08:00
pyproject.toml Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00

README.md

DuckLM

DuckLM is a local agent runtime over local language models. It exposes a WebChat and HTTP API, calls llama-server through an OpenAI-compatible API, and persists tasks/events in SQLite.

Quick Start

python3 -m venv .venv
. .venv/bin/activate
python -m pip install -e ".[dev]"
cp .env.example .env
bash scripts/llama/start_main.sh

In another terminal:

. .venv/bin/activate
python -m duck_core.api

Open http://127.0.0.1:8000/.