aprender 0.29.3

Next-generation ML framework in pure Rust — `cargo install aprender` for the `apr` CLI
Documentation
# GPU Serve CPU Fallback Dogfood

Dogfood test for GH-261: CPU fallback when GPU serve fails per-request.

Starts `apr serve --gpu` on a small APR model, then verifies:

1. `/health` reports `gpu_fallback: true`
2. `/v1/completions` returns a response (GPU or CPU-fallback)
3. `/v1/chat/completions` returns a well-formed OpenAI-compatible response

Requires a small APR model (e.g. `qwen2-0.5b-int8.apr`).

## Run

```bash
cargo run --release --example gpu_fallback_dogfood
```

## Source

```rust,ignore
{{#include ../../../examples/gpu_fallback_dogfood.rs}}
```