Go to file
mirivlad 234a3c957d Stream runtime status updates 2026-05-21 23:20:52 +08:00
config Integrate memory policy and reflection runtime 2026-05-21 22:40:11 +08:00
docs Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
duck_core Stream runtime status updates 2026-05-21 23:20:52 +08:00
prompts/roles Simplify tool approval chat flow 2026-05-21 23:06:24 +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 Stream runtime status updates 2026-05-21 23:20:52 +08:00
.env.example Add environment example 2026-05-20 01:01:23 +08:00
.gitignore Replace repository with DuckLM runtime 2026-05-20 01:00:28 +08:00
CURRENT_STATE.md Integrate memory policy and reflection runtime 2026-05-21 22:40:11 +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 Integrate memory policy and reflection runtime 2026-05-21 22:40:11 +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/.