harn-vm 0.8.83

Async bytecode virtual machine for the Harn programming language
Documentation
use super::output::*;
use super::*;

#[test]
fn parses_explicit_json_schema_output_format() {
    let mut fmt = BTreeMap::new();
    fmt.insert(
        "kind".to_string(),
        VmValue::String(std::sync::Arc::from("json_schema")),
    );
    fmt.insert(
        "schema".to_string(),
        VmValue::Dict(std::sync::Arc::new(BTreeMap::from([(
            "type".to_string(),
            VmValue::String(std::sync::Arc::from("object")),
        )]))),
    );
    fmt.insert("strict".to_string(), VmValue::Bool(false));
    let options = BTreeMap::from([(
        "output_format".to_string(),
        VmValue::Dict(std::sync::Arc::new(fmt)),
    )]);

    let parsed = parse_output_format_option(Some(&options), None, None).expect("output_format");

    assert_eq!(
        parsed,
        crate::llm::api::OutputFormat::JsonSchema {
            schema: serde_json::json!({"type": "object"}),
            strict: false,
        }
    );
}

#[test]
fn legacy_response_format_and_json_schema_map_to_typed_output_format() {
    let schema = serde_json::json!({"type": "object"});

    let parsed = parse_output_format_option(Some(&BTreeMap::new()), Some("json"), Some(&schema))
        .expect("legacy output format");

    assert_eq!(
        parsed,
        crate::llm::api::OutputFormat::JsonSchema {
            schema,
            strict: true,
        }
    );
}

#[test]
fn rejects_json_schema_when_capability_is_absent() {
    crate::llm::capabilities::clear_user_overrides();
    let err = validate_output_format_supported(
        &crate::llm::api::OutputFormat::JsonSchema {
            schema: serde_json::json!({"type": "object"}),
            strict: true,
        },
        "custom-provider",
        "custom-model",
        &crate::llm::capabilities::lookup("custom-provider", "custom-model"),
    )
    .expect_err("unsupported structured output should fail");

    assert!(err
        .to_string()
        .contains("option `output_format` is not supported by `custom-model`"));
}

#[test]
fn accepts_json_schema_when_capability_declares_strategy() {
    crate::llm::capabilities::set_user_overrides_toml(
        r#"
[[provider.custom-provider]]
model_match = "*"
structured_output = "format_kw"
"#,
    )
    .expect("capability override");

    validate_output_format_supported(
        &crate::llm::api::OutputFormat::JsonSchema {
            schema: serde_json::json!({"type": "object"}),
            strict: true,
        },
        "custom-provider",
        "custom-model",
        &crate::llm::capabilities::lookup("custom-provider", "custom-model"),
    )
    .expect("supported structured output");
    crate::llm::capabilities::clear_user_overrides();
}