trusty-common 0.19.0

Shared utilities and provider-agnostic streaming chat (ChatProvider, OllamaProvider, OpenRouter, tool-use) for trusty-* projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Linear backend (GraphQL).
//!
//! Why: Linear's API is GraphQL-only; no REST surface.
//! What: All queries are `const &str`. Single `graphql` helper handles
//! auth, payload assembly, and error extraction.
//! Test: shape tests in `backend`; live tests gated by env vars.

mod backend;
mod client;
mod types;

pub use types::LinearBackend;

#[cfg(test)]
mod tests;