use supercode::reduce::ReductionPolicy;
use supercode::{Agent, ChatMessage, Config, Session};
#[test]
fn historical_import_projects_the_harness_and_addon_surface() {
let _agent_constructor: fn(Config) -> supercode::Result<Agent> = Agent::new;
let _session = Session::from_native_messages(Vec::<ChatMessage>::new());
let _policy = ReductionPolicy::default();
}