vtcode 0.99.1

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;
use vtcode_core::config::VTCodeConfig;
use vtcode_core::config::types::AgentConfig as CoreAgentConfig;

pub async fn handle_app_server_command(
    _agent_config: &CoreAgentConfig,
    vt_config: &VTCodeConfig,
    listen: &str,
) -> Result<()> {
    crate::codex_app_server::launch_app_server_proxy(Some(vt_config), listen).await
}