supercode-core 0.4.6

Compatibility facade composing Supercode interchange, reduction, runtime, and harness packages
Documentation
1
2
3
4
5
6
7
8
9
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();
}