use serde_json::{json, Value};
pub fn json_schema_output_format(name: &str, schema: Value, strict: bool) -> Value {
json!({
"type": "json_schema",
"schema": schema,
"name": name,
"strict": strict,
})
}
pub fn output_config_with_format(format: Value) -> Value {
json!({ "format": format })
}