vtcode 0.137.0

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 llm_request;
mod planning_workflow;
mod recovery_guidance;
mod response_processing;
mod result_handler;
#[cfg(test)]
pub(crate) mod test_support;

pub(crate) use llm_request::execute_llm_request;
pub(crate) use planning_workflow::{maybe_force_planning_workflow_interview, planning_workflow_interview_ready};
pub(crate) use response_processing::process_llm_response;
pub(crate) use result_handler::{HandleTurnProcessingResultParams, handle_turn_processing_result};