Capture information from different channels and keep track of many parallel topics efficiently
agents
python
pydantic-ai
llama-cpp
ai
526 B
32 lines
1# distill
2
3Capture information from different channels and keep track of many parallel topics efficiently.
4
5## Usage
6
7Run `distill` via `uvx`:
8
9```bash
10uvx --from git+https://tangled.org/jehrhardt.dev/distill distill
11```
12
13Install distill permanently:
14
15```bash
16uv tool install git+https://tangled.org/jehrhardt.dev/distill
17```
18
19Once installed, run the CLI to see the available subcommands:
20
21```bash
22distill
23```
24
25## Development
26
27This project uses `mise` to setup the development environment:
28
29```bash
30mise install
31mise deps
32```