vtcode 0.136.3

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
12
mod client;
mod runtime;

pub(crate) use client::{
    CODEX_PROVIDER, CodexAccount, CodexAccountLoginCompleted, CodexAccountReadResponse, CodexAppServerClient,
    CodexLoginAccountResponse, CodexMcpServerStatus, CodexReviewTarget, ServerEvent, codex_sidecar_requirement_note,
    ensure_codex_sidecar_available, is_codex_cli_unavailable, launch_app_server_proxy,
};
pub(crate) use runtime::{
    CodexNonInteractiveRun, CodexSessionRuntime, handle_codex_ask_command, run_codex_noninteractive,
    run_codex_noninteractive_with_instructions,
};