use serde_json::{json, Map, Value};
use crate::canonical::{
CanonicalError, CanonicalRequest, ErrorKind, OutputFormat, Tool, ToolChoice,
};
use crate::protocol::json::finish_body;
use crate::protocol::{ProviderCtx, WireRequest};
mod messages;
pub(super) const REQUEST_PATH: &str = "/chat/completions";
pub(super) fn encode(
req: &CanonicalRequest,
ctx: &ProviderCtx,
) -> Result<WireRequest, CanonicalError> {
let mut body = Map::new();
body.insert("model".into(), json!(ctx.model));
body.insert("messages".into(), messages::messages_value(req)?);
if !req.tools.is_empty() {
body.insert("tools".into(), tools_value(&req.tools)?); }
if let Some(tc) = tool_choice_value(&req.tool_choice) {
body.insert("tool_choice".into(), tc); }
if let Some(p) = req.parallel_tool_calls {
body.insert("parallel_tool_calls".into(), json!(p)); }
if let Some(n) = req.max_tokens {
let key = if req.reasoning.is_some() {
"max_completion_tokens" } else {
"max_tokens" };
body.insert(key.into(), json!(n));
}
if req.reasoning.is_none() {
if let Some(t) = req.temperature {
body.insert("temperature".into(), json!(t));
}
if let Some(p) = req.top_p {
body.insert("top_p".into(), json!(p));
}
}
if let Some(r) = req.reasoning {
body.insert("reasoning_effort".into(), json!(r.as_str())); }
if !req.stop.is_empty() {
body.insert("stop".into(), json!(req.stop)); }
body.insert("stream".into(), json!(req.stream.unwrap_or(false)));
if req.stream.unwrap_or(false) {
body.insert("stream_options".into(), json!({"include_usage": true}));
}
if let Some(rf) = response_format(&req.output) {
body.insert("response_format".into(), rf); }
for (k, v) in &req.extra {
body.entry(k.clone()).or_insert_with(|| v.clone()); }
Ok(finish_body(body, format!("{}{REQUEST_PATH}", ctx.base_url)))
}
fn response_format(output: &Option<OutputFormat>) -> Option<Value> {
Some(match output.as_ref()? {
OutputFormat::Json => json!({"type": "json_object"}),
OutputFormat::JsonSchema {
name,
schema,
strict,
} => {
let mut js = json!({"name": name.as_deref().unwrap_or("response"), "schema": schema});
if let Some(s) = strict {
js["strict"] = json!(s);
}
json!({"type": "json_schema", "json_schema": js})
}
})
}
fn tools_value(tools: &[Tool]) -> Result<Value, CanonicalError> {
let mut out = Vec::new();
for t in tools {
let Tool::Custom {
name,
description,
input_schema,
strict,
} = t
else {
return Err(provider_tool_err());
};
let mut f = json!({"name": name, "parameters": input_schema});
if let Some(d) = description {
f["description"] = json!(d);
}
if let Some(s) = strict {
f["strict"] = json!(s);
}
out.push(json!({"type": "function", "function": f}));
}
Ok(Value::Array(out))
}
fn provider_tool_err() -> CanonicalError {
CanonicalError {
kind: ErrorKind::ParseInput,
message: "provider-typed tools are not projected for this dialect".into(),
provider_detail: None,
retry_after_seconds: None,
}
}
fn tool_choice_value(tc: &ToolChoice) -> Option<Value> {
Some(match tc {
ToolChoice::Auto => return None,
ToolChoice::Any => json!("required"),
ToolChoice::None => json!("none"),
ToolChoice::Tool { name } => json!({"type": "function", "function": {"name": name}}),
})
}