aether-evals 0.2.1

Dockerized eval harness for Aether AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod agent;
mod docker;
mod docker_aether_agent;
mod fake_agent;
mod image_builder;
mod transcript;

pub use agent::{Agent, AgentConfig, RunError};
pub use docker::{DockerError, DockerImage, DockerImageParseError};
pub use docker_aether_agent::DockerAetherAgent;
pub use fake_agent::FakeAgent;
pub use image_builder::{ImageBuildError, ImageBuildRequest, build_images};

pub(crate) use agent::build_task_prompt;
pub(crate) use transcript::{TRANSCRIPT_PAYLOAD_CHARS, get_transcript_line, is_terminal, truncate_chars};