rtb-chat 0.7.1

Unified multi-provider AI chat client for Claude, OpenAI, Gemini, and OpenAI-compatible endpoints. Part of the phpboyscout Rust toolkit.
Documentation
# Task runner for rtb-chat. `just ci` mirrors the MR gate.

default: check

check:
    cargo check --all-targets

build:
    cargo build --all-targets

fmt:
    cargo fmt --all

fmt-check:
    cargo fmt --all --check

lint:
    cargo clippy --all-targets -- -D warnings

test:
    cargo nextest run || cargo test

audit:
    cargo deny check

docs:
    RUSTDOCFLAGS="-D warnings" cargo doc --no-deps

site-build:
    zensical build --clean

site-serve:
    zensical serve

ci: fmt-check lint docs test audit