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
12
13
14
15
16
mod report;
mod run;
mod spec;

use std::path::PathBuf;

pub use run::handle_benchmark_command;

/// Options passed from the CLI layer for running the benchmark command.
#[derive(Debug, Clone)]
pub struct BenchmarkCommandOptions {
    pub task_file: Option<PathBuf>,
    pub inline_task: Option<String>,
    pub output: Option<PathBuf>,
    pub max_tasks: Option<usize>,
}