style: cargo fmt over the phase-13 merge — mechanical, no behavior change

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
archipelago
2026-08-09 15:44:18 -04:00
co-authored by Claude Fable 5
parent cb840fd36f
commit e465563cbd
28 changed files with 283 additions and 182 deletions
+1 -3
View File
@@ -290,9 +290,7 @@ async fn probe_one(client: &reqwest::Client, url: &str, label: &str, findings: &
if label == "/v1/models" {
findings.models_endpoint_ok = Some(status.is_success());
findings.models_endpoint_openai_shape = Some(
status.is_success()
&& body.contains("\"data\"")
&& body.contains("\"object\""),
status.is_success() && body.contains("\"data\"") && body.contains("\"object\""),
);
}
if (status.as_u16() == 401 || status.as_u16() == 402)