# AGENTS.md

Hundreds of models & providers. One command to find what runs on your hardware.

## Setup

```
cargo build
```

## Commands

```
make help
make build     # produce a build
make release
make clean
make run
make test      # run the test suite, must pass before any commit
```

## Layout

- `llmfit-web/`     22 source files
- `llmfit-core/`    18 source files
- `llmfit-tui/`     14 source files
- `scripts/`        9 source files
- `llmfit-desktop/` 4 source files
- `llmfit-python/`  4 source files

## Conventions

- Tests live alongside the code they cover, following `llmfit-core/tests/fixtures/hardware/mixed/rocm-product.txt`.
- CI defines what passing means. See `.github/workflows/ci.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `llmfit-core/src/providers.rs` is 224KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.
