vtcode 0.104.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
use anyhow::Result;
use std::future::Future;
use vtcode_core::config::VTCodeConfig;
use vtcode_core::config::types::AgentConfig as CoreAgentConfig;

pub fn handle_app_server_command<'a>(
    _agent_config: &'a CoreAgentConfig,
    vt_config: &'a VTCodeConfig,
    listen: &'a str,
) -> impl Future<Output = Result<()>> + 'a {
    crate::codex_app_server::launch_app_server_proxy(Some(vt_config), listen)
}