oy-cli 0.10.1

Local AI coding CLI for inspecting, editing, running commands, and auditing repositories
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Provider integration, model routing, sessions, transcripts, context
//! compaction, and the chat/tool loop orchestration.
//!
//! This module owns provider discovery, model selection, and the session
//! state machine that drives LLM requests through [`crate::llm`].

pub(crate) mod auth;
pub(crate) mod compaction;
pub(crate) mod model;
pub(crate) mod opencode_models;
pub(crate) mod retry;
pub(crate) mod session;
pub(crate) mod transcript;