|
|
||
|---|---|---|
| config | ||
| docs | ||
| duck_core | ||
| prompts/roles | ||
| scripts | ||
| skills/analyze_project | ||
| tests/smoke | ||
| .env.example | ||
| .gitignore | ||
| Ducklm.md | ||
| Makefile | ||
| README.md | ||
| docker-compose.memory.yml | ||
| favicon.ico | ||
| pyproject.toml | ||
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/.