mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-24 12:44:18 +08:00
67e074c0a7
* style(frontend): reformat provider forms, constants and hooks
Apply prettier formatting across 5 frontend files. No logic changes.
Changed files:
- AddProviderDialog.tsx: reformat generic type annotation and callback
- ClaudeFormFields.tsx: consolidate multi-line useState and Collapsible props
- CodexConfigSections.tsx: expand single-line React imports to multi-line,
collapse removeCodexTopLevelField() call
- constants.ts: merge TemplateType into single line
- useSkills.ts: expand single-line TanStack Query imports to multi-line,
reformat uninstallSkill mutationFn chain
* deps(proxy): add hyper ecosystem crates and manual decompression libs
reqwest internally normalizes all header names to lowercase and does not
preserve insertion order, causing proxied requests to differ from the
original client requests. To achieve transparent header forwarding with
original casing and order, introduce lower-level hyper HTTP client libs.
New dependencies:
- hyper-util 0.1: TokioExecutor + legacy Client with
preserve_header_case support for HTTP/1.1
- hyper-rustls 0.27: rustls-based TLS connector for hyper
- http 1 / http-body 1 / http-body-util 0.1: HTTP type crates for
hyper 1.x request/response construction
- flate2 1: manual gzip/deflate decompression (replaces reqwest auto)
- brotli 7: manual brotli decompression
Changed dependencies:
- serde_json: enable preserve_order feature to keep JSON field order
- reqwest: drop gzip feature to prevent reqwest from overriding the
client's original accept-encoding header
* refactor(proxy): use hyper client for header-case preserving forwarding
Previously the proxy used reqwest for all upstream requests. reqwest
normalizes header names to lowercase and reorders them internally,
making proxied requests distinguishable from direct CLI requests.
Some upstream providers are sensitive to these differences.
This commit replaces reqwest with a hyper-based HTTP client on the
default (non-proxy) path, achieving wire-level header fidelity:
Server layer (server.rs):
- Replace axum::serve with a manual hyper HTTP/1.1 accept loop
- Enable preserve_header_case(true) so incoming header casing is
captured in a HeaderCaseMap extension on each request
- Bridge hyper requests to axum Router via tower::Service
New hyper client module (hyper_client.rs):
- Lazy-initialized hyper-util Client with preserve_header_case
- ProxyResponse enum wrapping both hyper::Response and reqwest::Response
behind a unified interface (status, headers, bytes, bytes_stream)
- send_request() builds requests with ordered HeaderMap + case map
Request handlers (handlers.rs):
- Switch from (HeaderMap, Json<Value>) extractors to raw
axum::extract::Request to preserve Extensions (containing the
HeaderCaseMap from the accept loop)
- Pass extensions through the forwarding chain
Forwarder (forwarder.rs):
- Remove HEADER_BLACKLIST array; replace with ordered header iteration
that preserves original header sequence and casing
- Build ordered_headers by iterating client headers, skipping only
auth/host/content-length, and inserting auth headers at the original
authorization position to maintain order
- Handle anthropic-beta (ensure claude-code-20250219 tag) and
anthropic-version (passthrough or default) inline during iteration
- Remove should_force_identity_encoding() — accept-encoding is now
transparently forwarded to upstream
- Use hyper client by default; fall back to reqwest only when an
HTTP/SOCKS5 proxy tunnel is configured
Provider adapters (adapter.rs, claude.rs, codex.rs, gemini.rs):
- Replace add_auth_headers(RequestBuilder) -> RequestBuilder with
get_auth_headers(AuthInfo) -> Vec<(HeaderName, HeaderValue)>
- Adapters now return header pairs instead of mutating a reqwest builder
- Claude adapter: merge Anthropic/ClaudeAuth/Bearer into single branch;
move Copilot fingerprint headers into get_auth_headers
Response processing (response_processor.rs):
- Add manual decompression (gzip/deflate/brotli via flate2 + brotli)
for non-streaming responses, since reqwest auto-decompression is now
disabled to allow accept-encoding passthrough
- Add compressed-SSE warning log for streaming responses
- Accept ProxyResponse instead of reqwest::Response
HTTP client (http_client.rs):
- Disable reqwest auto-decompression (.no_gzip/.no_brotli/.no_deflate)
on both global and per-provider clients
Streaming adapters (streaming.rs, streaming_responses.rs):
- Generalize stream error type from reqwest::Error to generic E: Error
Misc:
- log_codes.rs: add SRV-005 (ACCEPT_ERR) and SRV-006 (CONN_ERR)
- stream_check.rs: reformat copilot header lines
- transform.rs: fix trailing whitespace alignment
* fix(lint): resolve 35 clippy warnings across Rust codebase
Fix all clippy warnings reported by `cargo clippy --lib`:
- codex_config.rs: fix doc_overindented_list_items (3 spaces -> 2)
- commands/copilot.rs: inline format args in 2 log::error! calls
- commands/provider.rs: inline format args in 3 map_err closures
- proxy/hyper_client.rs: inline format arg in log::debug! call
- proxy/providers/copilot_auth.rs: inline format args in 16 locations
(log macros, format! in headers, error constructors)
- proxy/thinking_optimizer.rs: inline format args in 2 log::info! calls
- services/skill.rs: inline format args in log::debug! call
- services/webdav_sync.rs: inline format args in 6 format! calls
(version compat messages, download limit messages)
- services/webdav_sync/archive.rs: inline format args in 2 format! calls
- session_manager/providers/opencode.rs: inline format args in
source_path format!
All fixes use the clippy::uninlined_format_args suggestion pattern:
format!("msg: {}", var) -> format!("msg: {var}")
* deps(proxy): add raw HTTP write and native TLS cert dependencies
Add crates required for the raw TCP/TLS write path that bypasses
hyper's header encoder to preserve original header name casing:
- httparse: parse raw TCP peek bytes to capture header casings
- tokio-rustls + rustls: direct TLS connections for raw write path
- webpki-roots: Mozilla CA bundle baseline
- rustls-native-certs: load system keychain CAs (trusts proxy MITM
certificates from Clash, mitmproxy, etc.)
* fix(proxy): address code review feedback on response handling
Fixes from PR #1714 code review:
- Extract `read_decoded_body()` and `strip_entity_headers_for_rebuilt_body()`
in response_processor to properly clean content-encoding/content-length
headers after decompression
- Reuse `read_decoded_body()` in handlers.rs for Claude transform path,
ensuring compressed responses are decoded before format conversion
- Make `build_proxy_url_from_config()` public so forwarder can pass proxy
URL to the hyper raw write path
- Add `has_system_proxy_env()` utility with test coverage
- Add 50ms backoff after accept() failures in server.rs to prevent
tight-loop CPU spin on transient socket errors
* feat(proxy): implement raw TCP/TLS write with HTTP CONNECT tunnel
Rewrite hyper_client with a two-tier strategy for header case preservation:
Primary path (raw write):
- Peek raw TCP bytes in server.rs to capture OriginalHeaderCases before
hyper lowercases them
- Build raw HTTP/1.1 request bytes with exact original header name casing
- Write directly to TLS stream, then use WriteFilter to let hyper parse
the response while discarding its duplicate request writes
- Support HTTP CONNECT tunneling through upstream proxies, so header case
is preserved even when a proxy (Clash, V2Ray) is configured
Fallback path (hyper-util Client):
- Used when OriginalHeaderCases is empty or raw write fails
- Configured with title_case_headers(true) for best-effort casing
TLS improvements:
- Load native system certificates alongside webpki roots so proxy MITM
CAs (installed in system keychain) are trusted through CONNECT tunnels
Key types added:
- OriginalHeaderCases: maps lowercase name → original wire-casing bytes
- WriteFilter<S>: AsyncRead+AsyncWrite wrapper that discards writes
- connect_via_proxy(): HTTP CONNECT tunnel establishment
- ExtensionDebugMarker: diagnostic marker for extension chain debugging
* refactor(proxy): route requests through hyper with proxy-aware forwarding
Rework forwarder request dispatch to always prefer the hyper raw write
path (header case preservation) over reqwest:
Request routing:
- HTTP/HTTPS proxy: hyper raw write through CONNECT tunnel (case preserved)
- SOCKS5 proxy: reqwest fallback (CONNECT not supported for SOCKS5)
- No proxy: hyper raw write direct connection
Header handling improvements:
- Replace host header in-place at original position instead of
skip-and-append, preserving client's header ordering
- Preserve client's original accept-encoding for transparent passthrough;
only force identity encoding when transform path needs decompression
- Add should_force_identity_encoding() to centralize the decision
- Remove hardcoded 'br, gzip, deflate' override that masked client values
Proxy URL resolution (priority order):
1. Provider-specific proxy config (if enabled)
2. Global proxy URL configured in CC Switch
3. Direct connection (no proxy)
* chore(proxy): remove dead code, redundant tests and debug scaffolding
- Inline should_force_identity_encoding() (was just `needs_transform`)
and delete its 5 test cases
- Remove ExtensionDebugMarker diagnostic type
- Remove unused has_system_proxy_env() and its test
- Remove strip_entity_headers test
- Simplify hyper path: remove redundant is_socks_proxy ternary
- Update hyper_client module doc to reflect CONNECT tunnel support
* fix(proxy): block direct-connect fallback and complete CONNECT tunnel support
* feat(hooks): improve proxy requirement warnings with specific reasons
- Remove redundant OpenAI format hint toast messages
- Add detailed reason detection for proxy requirements (OpenAI Chat, OpenAI Responses, full URL mode)
- Update i18n files with new reason-specific keys
* style(*): format code with prettier
- Remove extra whitespace in http_client.rs
- Fix formatting issues in useProviderActions.ts
* fix(proxy): post-merge fixes for forward return type and clippy warnings
- Restore forward() return type to (ProxyResponse, Option<String>)
to pass claude_api_format through to callers
- Inline format args in log::warn! macro (clippy::uninlined_format_args)
- Suppress too_many_arguments for check_claude_stream
* refactor(proxy): preserve original header wire order and add non-streaming body timeout
- Rewrite build_raw_request to emit headers in original
client-sent sequence instead of hash-map order
- Remove unused OriginalHeaderCases::get_all method
- Add body_timeout to read_decoded_body to prevent
requests hanging when upstream stalls after headers
1075 lines
37 KiB
Rust
1075 lines
37 KiB
Rust
//! 格式转换模块
|
||
//!
|
||
//! 实现 Anthropic ↔ OpenAI 格式转换,用于 OpenRouter 支持
|
||
//! 参考: anthropic-proxy-rs
|
||
|
||
use crate::proxy::error::ProxyError;
|
||
use serde_json::{json, Value};
|
||
|
||
/// Detect OpenAI o-series reasoning models (o1, o3, o4-mini, etc.)
|
||
/// These models require `max_completion_tokens` instead of `max_tokens`.
|
||
pub fn is_openai_o_series(model: &str) -> bool {
|
||
model.len() > 1
|
||
&& model.starts_with('o')
|
||
&& model.as_bytes().get(1).is_some_and(|b| b.is_ascii_digit())
|
||
}
|
||
|
||
/// Detect OpenAI models that support reasoning_effort.
|
||
///
|
||
/// Supported families:
|
||
/// - o-series: o1, o3, o4-mini, etc.
|
||
/// - GPT-5+: gpt-5, gpt-5.1, gpt-5.4, gpt-5-codex, etc.
|
||
pub fn supports_reasoning_effort(model: &str) -> bool {
|
||
is_openai_o_series(model)
|
||
|| model
|
||
.to_lowercase()
|
||
.strip_prefix("gpt-")
|
||
.and_then(|rest| rest.chars().next())
|
||
.is_some_and(|c| c.is_ascii_digit() && c >= '5')
|
||
}
|
||
|
||
/// Resolve the appropriate OpenAI `reasoning_effort` from an Anthropic request body.
|
||
///
|
||
/// Priority:
|
||
/// 1. Explicit `output_config.effort` — preserves the user's intent directly.
|
||
/// `low`/`medium`/`high` map 1:1; `max` maps to `xhigh`
|
||
/// (supported by mainstream GPT models). Unknown values are ignored.
|
||
/// 2. Fallback: `thinking.type` + `budget_tokens`:
|
||
/// - `adaptive` → `high` (mirrors optimizer semantics where adaptive ≈ max effort)
|
||
/// - `enabled` with budget → `low` (<4 000) / `medium` (4 000–15 999) / `high` (≥16 000)
|
||
/// - `enabled` without budget → `high` (conservative default)
|
||
/// - `disabled` / absent → `None`
|
||
pub fn resolve_reasoning_effort(body: &Value) -> Option<&'static str> {
|
||
// --- Priority 1: explicit output_config.effort ---
|
||
if let Some(effort) = body
|
||
.pointer("/output_config/effort")
|
||
.and_then(|v| v.as_str())
|
||
{
|
||
return match effort {
|
||
"low" => Some("low"),
|
||
"medium" => Some("medium"),
|
||
"high" => Some("high"),
|
||
"max" => Some("xhigh"), // OpenAI xhigh = maximum reasoning effort
|
||
_ => None, // unknown value — do not inject
|
||
};
|
||
}
|
||
|
||
// --- Priority 2: thinking.type + budget_tokens fallback ---
|
||
let thinking = body.get("thinking")?;
|
||
match thinking.get("type").and_then(|t| t.as_str()) {
|
||
Some("adaptive") => Some("high"),
|
||
Some("enabled") => {
|
||
let budget = thinking.get("budget_tokens").and_then(|b| b.as_u64());
|
||
match budget {
|
||
Some(b) if b < 4_000 => Some("low"),
|
||
Some(b) if b < 16_000 => Some("medium"),
|
||
Some(_) => Some("high"),
|
||
None => Some("high"), // enabled but no budget — assume strong reasoning
|
||
}
|
||
}
|
||
_ => None, // disabled or missing
|
||
}
|
||
}
|
||
|
||
/// Anthropic 请求 → OpenAI 请求
|
||
///
|
||
/// `cache_key`: optional prompt_cache_key to inject for improved cache routing
|
||
pub fn anthropic_to_openai(body: Value, cache_key: Option<&str>) -> Result<Value, ProxyError> {
|
||
let mut result = json!({});
|
||
|
||
// NOTE: 模型映射由上游统一处理(proxy::model_mapper),格式转换层只做结构转换。
|
||
if let Some(model) = body.get("model").and_then(|m| m.as_str()) {
|
||
result["model"] = json!(model);
|
||
}
|
||
|
||
let mut messages = Vec::new();
|
||
|
||
// 处理 system prompt
|
||
if let Some(system) = body.get("system") {
|
||
if let Some(text) = system.as_str() {
|
||
// 单个字符串
|
||
messages.push(json!({"role": "system", "content": text}));
|
||
} else if let Some(arr) = system.as_array() {
|
||
// 多个 system message — preserve cache_control for compatible proxies
|
||
for msg in arr {
|
||
if let Some(text) = msg.get("text").and_then(|t| t.as_str()) {
|
||
let mut sys_msg = json!({"role": "system", "content": text});
|
||
if let Some(cc) = msg.get("cache_control") {
|
||
sys_msg["cache_control"] = cc.clone();
|
||
}
|
||
messages.push(sys_msg);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 转换 messages
|
||
if let Some(msgs) = body.get("messages").and_then(|m| m.as_array()) {
|
||
for msg in msgs {
|
||
let role = msg.get("role").and_then(|r| r.as_str()).unwrap_or("user");
|
||
let content = msg.get("content");
|
||
let converted = convert_message_to_openai(role, content)?;
|
||
messages.extend(converted);
|
||
}
|
||
}
|
||
|
||
result["messages"] = json!(messages);
|
||
|
||
// 转换参数 — o-series 模型需要 max_completion_tokens
|
||
let model = body.get("model").and_then(|m| m.as_str()).unwrap_or("");
|
||
if let Some(v) = body.get("max_tokens") {
|
||
if is_openai_o_series(model) {
|
||
result["max_completion_tokens"] = v.clone();
|
||
} else {
|
||
result["max_tokens"] = v.clone();
|
||
}
|
||
}
|
||
if let Some(v) = body.get("temperature") {
|
||
result["temperature"] = v.clone();
|
||
}
|
||
if let Some(v) = body.get("top_p") {
|
||
result["top_p"] = v.clone();
|
||
}
|
||
if let Some(v) = body.get("stop_sequences") {
|
||
result["stop"] = v.clone();
|
||
}
|
||
if let Some(v) = body.get("stream") {
|
||
result["stream"] = v.clone();
|
||
}
|
||
|
||
// Map Anthropic thinking → OpenAI reasoning_effort
|
||
if supports_reasoning_effort(model) {
|
||
if let Some(effort) = resolve_reasoning_effort(&body) {
|
||
result["reasoning_effort"] = json!(effort);
|
||
}
|
||
}
|
||
|
||
// 转换 tools (过滤 BatchTool)
|
||
if let Some(tools) = body.get("tools").and_then(|t| t.as_array()) {
|
||
let openai_tools: Vec<Value> = tools
|
||
.iter()
|
||
.filter(|t| t.get("type").and_then(|v| v.as_str()) != Some("BatchTool"))
|
||
.map(|t| {
|
||
let mut tool = json!({
|
||
"type": "function",
|
||
"function": {
|
||
"name": t.get("name").and_then(|n| n.as_str()).unwrap_or(""),
|
||
"description": t.get("description"),
|
||
"parameters": clean_schema(t.get("input_schema").cloned().unwrap_or(json!({})))
|
||
}
|
||
});
|
||
if let Some(cc) = t.get("cache_control") {
|
||
tool["cache_control"] = cc.clone();
|
||
}
|
||
tool
|
||
})
|
||
.collect();
|
||
|
||
if !openai_tools.is_empty() {
|
||
result["tools"] = json!(openai_tools);
|
||
}
|
||
}
|
||
|
||
if let Some(v) = body.get("tool_choice") {
|
||
result["tool_choice"] = v.clone();
|
||
}
|
||
|
||
// Inject prompt_cache_key for improved cache routing on OpenAI-compatible endpoints
|
||
if let Some(key) = cache_key {
|
||
result["prompt_cache_key"] = json!(key);
|
||
}
|
||
|
||
Ok(result)
|
||
}
|
||
|
||
/// 转换单条消息到 OpenAI 格式(可能产生多条消息)
|
||
fn convert_message_to_openai(
|
||
role: &str,
|
||
content: Option<&Value>,
|
||
) -> Result<Vec<Value>, ProxyError> {
|
||
let mut result = Vec::new();
|
||
|
||
let content = match content {
|
||
Some(c) => c,
|
||
None => {
|
||
result.push(json!({"role": role, "content": null}));
|
||
return Ok(result);
|
||
}
|
||
};
|
||
|
||
// 字符串内容
|
||
if let Some(text) = content.as_str() {
|
||
result.push(json!({"role": role, "content": text}));
|
||
return Ok(result);
|
||
}
|
||
|
||
// 数组内容(多模态/工具调用)
|
||
if let Some(blocks) = content.as_array() {
|
||
let mut content_parts = Vec::new();
|
||
let mut tool_calls = Vec::new();
|
||
|
||
for block in blocks {
|
||
let block_type = block.get("type").and_then(|t| t.as_str()).unwrap_or("");
|
||
|
||
match block_type {
|
||
"text" => {
|
||
if let Some(text) = block.get("text").and_then(|t| t.as_str()) {
|
||
let mut part = json!({"type": "text", "text": text});
|
||
if let Some(cc) = block.get("cache_control") {
|
||
part["cache_control"] = cc.clone();
|
||
}
|
||
content_parts.push(part);
|
||
}
|
||
}
|
||
"image" => {
|
||
if let Some(source) = block.get("source") {
|
||
let media_type = source
|
||
.get("media_type")
|
||
.and_then(|m| m.as_str())
|
||
.unwrap_or("image/png");
|
||
let data = source.get("data").and_then(|d| d.as_str()).unwrap_or("");
|
||
content_parts.push(json!({
|
||
"type": "image_url",
|
||
"image_url": {"url": format!("data:{};base64,{}", media_type, data)}
|
||
}));
|
||
}
|
||
}
|
||
"tool_use" => {
|
||
let id = block.get("id").and_then(|i| i.as_str()).unwrap_or("");
|
||
let name = block.get("name").and_then(|n| n.as_str()).unwrap_or("");
|
||
let input = block.get("input").cloned().unwrap_or(json!({}));
|
||
tool_calls.push(json!({
|
||
"id": id,
|
||
"type": "function",
|
||
"function": {
|
||
"name": name,
|
||
"arguments": serde_json::to_string(&input).unwrap_or_default()
|
||
}
|
||
}));
|
||
}
|
||
"tool_result" => {
|
||
// tool_result 变成单独的 tool role 消息
|
||
let tool_use_id = block
|
||
.get("tool_use_id")
|
||
.and_then(|i| i.as_str())
|
||
.unwrap_or("");
|
||
let content_val = block.get("content");
|
||
let content_str = match content_val {
|
||
Some(Value::String(s)) => s.clone(),
|
||
Some(v) => serde_json::to_string(v).unwrap_or_default(),
|
||
None => String::new(),
|
||
};
|
||
result.push(json!({
|
||
"role": "tool",
|
||
"tool_call_id": tool_use_id,
|
||
"content": content_str
|
||
}));
|
||
}
|
||
"thinking" => {
|
||
// 跳过 thinking blocks
|
||
}
|
||
_ => {}
|
||
}
|
||
}
|
||
|
||
// 添加带内容和/或工具调用的消息
|
||
if !content_parts.is_empty() || !tool_calls.is_empty() {
|
||
let mut msg = json!({"role": role});
|
||
|
||
// 内容处理
|
||
if content_parts.is_empty() {
|
||
msg["content"] = Value::Null;
|
||
} else if content_parts.len() == 1 {
|
||
// When cache_control is present, keep array format to preserve it
|
||
let has_cache_control = content_parts[0].get("cache_control").is_some();
|
||
if !has_cache_control {
|
||
if let Some(text) = content_parts[0].get("text") {
|
||
msg["content"] = text.clone();
|
||
} else {
|
||
msg["content"] = json!(content_parts);
|
||
}
|
||
} else {
|
||
msg["content"] = json!(content_parts);
|
||
}
|
||
} else {
|
||
msg["content"] = json!(content_parts);
|
||
}
|
||
|
||
// 工具调用
|
||
if !tool_calls.is_empty() {
|
||
msg["tool_calls"] = json!(tool_calls);
|
||
}
|
||
|
||
result.push(msg);
|
||
}
|
||
|
||
return Ok(result);
|
||
}
|
||
|
||
// 其他情况直接透传
|
||
result.push(json!({"role": role, "content": content}));
|
||
Ok(result)
|
||
}
|
||
|
||
/// 清理 JSON schema(移除不支持的 format)
|
||
pub fn clean_schema(mut schema: Value) -> Value {
|
||
if let Some(obj) = schema.as_object_mut() {
|
||
// 移除 "format": "uri"
|
||
if obj.get("format").and_then(|v| v.as_str()) == Some("uri") {
|
||
obj.remove("format");
|
||
}
|
||
|
||
// 递归清理嵌套 schema
|
||
if let Some(properties) = obj.get_mut("properties").and_then(|v| v.as_object_mut()) {
|
||
for (_, value) in properties.iter_mut() {
|
||
*value = clean_schema(value.clone());
|
||
}
|
||
}
|
||
|
||
if let Some(items) = obj.get_mut("items") {
|
||
*items = clean_schema(items.clone());
|
||
}
|
||
}
|
||
schema
|
||
}
|
||
|
||
/// OpenAI 响应 → Anthropic 响应
|
||
pub fn openai_to_anthropic(body: Value) -> Result<Value, ProxyError> {
|
||
let choices = body
|
||
.get("choices")
|
||
.and_then(|c| c.as_array())
|
||
.ok_or_else(|| ProxyError::TransformError("No choices in response".to_string()))?;
|
||
|
||
let choice = choices
|
||
.first()
|
||
.ok_or_else(|| ProxyError::TransformError("Empty choices array".to_string()))?;
|
||
|
||
let message = choice
|
||
.get("message")
|
||
.ok_or_else(|| ProxyError::TransformError("No message in choice".to_string()))?;
|
||
|
||
let mut content = Vec::new();
|
||
let mut has_tool_use = false;
|
||
|
||
// 文本/拒绝内容
|
||
if let Some(msg_content) = message.get("content") {
|
||
if let Some(text) = msg_content.as_str() {
|
||
if !text.is_empty() {
|
||
content.push(json!({"type": "text", "text": text}));
|
||
}
|
||
} else if let Some(parts) = msg_content.as_array() {
|
||
for part in parts {
|
||
let part_type = part.get("type").and_then(|t| t.as_str()).unwrap_or("");
|
||
match part_type {
|
||
"text" | "output_text" => {
|
||
if let Some(text) = part.get("text").and_then(|t| t.as_str()) {
|
||
if !text.is_empty() {
|
||
content.push(json!({"type": "text", "text": text}));
|
||
}
|
||
}
|
||
}
|
||
"refusal" => {
|
||
if let Some(refusal) = part.get("refusal").and_then(|r| r.as_str()) {
|
||
if !refusal.is_empty() {
|
||
content.push(json!({"type": "text", "text": refusal}));
|
||
}
|
||
}
|
||
}
|
||
_ => {}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
// Some providers put refusal at message-level.
|
||
if let Some(refusal) = message.get("refusal").and_then(|r| r.as_str()) {
|
||
if !refusal.is_empty() {
|
||
content.push(json!({"type": "text", "text": refusal}));
|
||
}
|
||
}
|
||
|
||
// 工具调用(tool_calls)
|
||
if let Some(tool_calls) = message.get("tool_calls").and_then(|t| t.as_array()) {
|
||
if !tool_calls.is_empty() {
|
||
has_tool_use = true;
|
||
}
|
||
for tc in tool_calls {
|
||
let id = tc.get("id").and_then(|i| i.as_str()).unwrap_or("");
|
||
let empty_obj = json!({});
|
||
let func = tc.get("function").unwrap_or(&empty_obj);
|
||
let name = func.get("name").and_then(|n| n.as_str()).unwrap_or("");
|
||
let args_str = func
|
||
.get("arguments")
|
||
.and_then(|a| a.as_str())
|
||
.unwrap_or("{}");
|
||
let input: Value = serde_json::from_str(args_str).unwrap_or(json!({}));
|
||
|
||
content.push(json!({
|
||
"type": "tool_use",
|
||
"id": id,
|
||
"name": name,
|
||
"input": input
|
||
}));
|
||
}
|
||
}
|
||
// 兼容旧格式(function_call)
|
||
if !has_tool_use {
|
||
if let Some(function_call) = message.get("function_call") {
|
||
let id = function_call
|
||
.get("id")
|
||
.and_then(|i| i.as_str())
|
||
.unwrap_or("");
|
||
let name = function_call
|
||
.get("name")
|
||
.and_then(|n| n.as_str())
|
||
.unwrap_or("");
|
||
let has_arguments = function_call.get("arguments").is_some();
|
||
|
||
let input = match function_call.get("arguments") {
|
||
Some(Value::String(s)) => serde_json::from_str(s).unwrap_or(json!({})),
|
||
Some(v @ Value::Object(_)) | Some(v @ Value::Array(_)) => v.clone(),
|
||
_ => json!({}),
|
||
};
|
||
|
||
if !name.is_empty() || has_arguments {
|
||
content.push(json!({
|
||
"type": "tool_use",
|
||
"id": id,
|
||
"name": name,
|
||
"input": input
|
||
}));
|
||
has_tool_use = true;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 映射 finish_reason → stop_reason
|
||
let stop_reason = choice
|
||
.get("finish_reason")
|
||
.and_then(|r| r.as_str())
|
||
.map(|r| match r {
|
||
"stop" => "end_turn",
|
||
"length" => "max_tokens",
|
||
"tool_calls" | "function_call" => "tool_use",
|
||
"content_filter" => "end_turn",
|
||
other => {
|
||
log::warn!(
|
||
"[Claude/OpenAI] Unknown finish_reason in non-streaming response: {other}"
|
||
);
|
||
"end_turn"
|
||
}
|
||
})
|
||
.or(if has_tool_use { Some("tool_use") } else { None });
|
||
|
||
// usage — map cache tokens from OpenAI format to Anthropic format
|
||
let usage = body.get("usage").cloned().unwrap_or(json!({}));
|
||
let input_tokens = usage
|
||
.get("prompt_tokens")
|
||
.and_then(|v| v.as_u64())
|
||
.unwrap_or(0) as u32;
|
||
let output_tokens = usage
|
||
.get("completion_tokens")
|
||
.and_then(|v| v.as_u64())
|
||
.unwrap_or(0) as u32;
|
||
|
||
let mut usage_json = json!({
|
||
"input_tokens": input_tokens,
|
||
"output_tokens": output_tokens
|
||
});
|
||
|
||
// OpenAI standard: prompt_tokens_details.cached_tokens
|
||
if let Some(cached) = usage
|
||
.pointer("/prompt_tokens_details/cached_tokens")
|
||
.and_then(|v| v.as_u64())
|
||
{
|
||
usage_json["cache_read_input_tokens"] = json!(cached);
|
||
}
|
||
// Some compatible servers return these fields directly
|
||
if let Some(v) = usage.get("cache_read_input_tokens") {
|
||
usage_json["cache_read_input_tokens"] = v.clone();
|
||
}
|
||
if let Some(v) = usage.get("cache_creation_input_tokens") {
|
||
usage_json["cache_creation_input_tokens"] = v.clone();
|
||
}
|
||
|
||
let result = json!({
|
||
"id": body.get("id").and_then(|i| i.as_str()).unwrap_or(""),
|
||
"type": "message",
|
||
"role": "assistant",
|
||
"content": content,
|
||
"model": body.get("model").and_then(|m| m.as_str()).unwrap_or(""),
|
||
"stop_reason": stop_reason,
|
||
"stop_sequence": null,
|
||
"usage": usage_json
|
||
});
|
||
|
||
Ok(result)
|
||
}
|
||
|
||
#[cfg(test)]
|
||
mod tests {
|
||
use super::*;
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_simple() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["model"], "claude-3-opus");
|
||
assert_eq!(result["max_tokens"], 1024);
|
||
assert_eq!(result["messages"][0]["role"], "user");
|
||
assert_eq!(result["messages"][0]["content"], "Hello");
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_with_system() {
|
||
let input = json!({
|
||
"model": "claude-3-sonnet",
|
||
"max_tokens": 1024,
|
||
"system": "You are a helpful assistant.",
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["messages"][0]["role"], "system");
|
||
assert_eq!(
|
||
result["messages"][0]["content"],
|
||
"You are a helpful assistant."
|
||
);
|
||
assert_eq!(result["messages"][1]["role"], "user");
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_with_tools() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "What's the weather?"}],
|
||
"tools": [{
|
||
"name": "get_weather",
|
||
"description": "Get weather info",
|
||
"input_schema": {"type": "object", "properties": {"location": {"type": "string"}}}
|
||
}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["tools"][0]["type"], "function");
|
||
assert_eq!(result["tools"][0]["function"]["name"], "get_weather");
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_tool_use() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"messages": [{
|
||
"role": "assistant",
|
||
"content": [
|
||
{"type": "text", "text": "Let me check"},
|
||
{"type": "tool_use", "id": "call_123", "name": "get_weather", "input": {"location": "Tokyo"}}
|
||
]
|
||
}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
let msg = &result["messages"][0];
|
||
assert_eq!(msg["role"], "assistant");
|
||
assert!(msg.get("tool_calls").is_some());
|
||
assert_eq!(msg["tool_calls"][0]["id"], "call_123");
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_tool_result() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"messages": [{
|
||
"role": "user",
|
||
"content": [
|
||
{"type": "tool_result", "tool_use_id": "call_123", "content": "Sunny, 25°C"}
|
||
]
|
||
}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
let msg = &result["messages"][0];
|
||
assert_eq!(msg["role"], "tool");
|
||
assert_eq!(msg["tool_call_id"], "call_123");
|
||
assert_eq!(msg["content"], "Sunny, 25°C");
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_simple() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"object": "chat.completion",
|
||
"created": 1234567890,
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {"role": "assistant", "content": "Hello!"},
|
||
"finish_reason": "stop"
|
||
}],
|
||
"usage": {"prompt_tokens": 10, "completion_tokens": 5, "total_tokens": 15}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["id"], "chatcmpl-123");
|
||
assert_eq!(result["type"], "message");
|
||
assert_eq!(result["content"][0]["type"], "text");
|
||
assert_eq!(result["content"][0]["text"], "Hello!");
|
||
assert_eq!(result["stop_reason"], "end_turn");
|
||
assert_eq!(result["usage"]["input_tokens"], 10);
|
||
assert_eq!(result["usage"]["output_tokens"], 5);
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_with_tool_calls() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"object": "chat.completion",
|
||
"created": 1234567890,
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {
|
||
"role": "assistant",
|
||
"content": null,
|
||
"tool_calls": [{
|
||
"id": "call_123",
|
||
"type": "function",
|
||
"function": {"name": "get_weather", "arguments": "{\"location\": \"Tokyo\"}"}
|
||
}]
|
||
},
|
||
"finish_reason": "tool_calls"
|
||
}],
|
||
"usage": {"prompt_tokens": 10, "completion_tokens": 5, "total_tokens": 15}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["content"][0]["type"], "tool_use");
|
||
assert_eq!(result["content"][0]["id"], "call_123");
|
||
assert_eq!(result["content"][0]["name"], "get_weather");
|
||
assert_eq!(result["content"][0]["input"]["location"], "Tokyo");
|
||
assert_eq!(result["stop_reason"], "tool_use");
|
||
}
|
||
|
||
#[test]
|
||
fn test_model_passthrough() {
|
||
// 格式转换层只做结构转换,模型映射由上游 proxy::model_mapper 处理
|
||
let input = json!({
|
||
"model": "gpt-4o",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["model"], "gpt-4o");
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_with_cache_key() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, Some("provider-123")).unwrap();
|
||
assert_eq!(result["prompt_cache_key"], "provider-123");
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_no_cache_key() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert!(result.get("prompt_cache_key").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_cache_control_preserved() {
|
||
let input = json!({
|
||
"model": "claude-3-opus",
|
||
"max_tokens": 1024,
|
||
"system": [
|
||
{"type": "text", "text": "System prompt", "cache_control": {"type": "ephemeral"}}
|
||
],
|
||
"messages": [{
|
||
"role": "user",
|
||
"content": [
|
||
{"type": "text", "text": "Hello", "cache_control": {"type": "ephemeral", "ttl": "5m"}}
|
||
]
|
||
}],
|
||
"tools": [{
|
||
"name": "get_weather",
|
||
"description": "Get weather",
|
||
"input_schema": {"type": "object"},
|
||
"cache_control": {"type": "ephemeral"}
|
||
}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
// System message cache_control preserved
|
||
assert_eq!(result["messages"][0]["cache_control"]["type"], "ephemeral");
|
||
// Text block cache_control preserved
|
||
assert_eq!(
|
||
result["messages"][1]["content"][0]["cache_control"]["type"],
|
||
"ephemeral"
|
||
);
|
||
assert_eq!(
|
||
result["messages"][1]["content"][0]["cache_control"]["ttl"],
|
||
"5m"
|
||
);
|
||
// Tool cache_control preserved
|
||
assert_eq!(result["tools"][0]["cache_control"]["type"], "ephemeral");
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_with_cache_tokens() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {"role": "assistant", "content": "Hello!"},
|
||
"finish_reason": "stop"
|
||
}],
|
||
"usage": {
|
||
"prompt_tokens": 100,
|
||
"completion_tokens": 50,
|
||
"prompt_tokens_details": {
|
||
"cached_tokens": 80
|
||
}
|
||
}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["usage"]["input_tokens"], 100);
|
||
assert_eq!(result["usage"]["output_tokens"], 50);
|
||
assert_eq!(result["usage"]["cache_read_input_tokens"], 80);
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_with_direct_cache_fields() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {"role": "assistant", "content": "Hello!"},
|
||
"finish_reason": "stop"
|
||
}],
|
||
"usage": {
|
||
"prompt_tokens": 100,
|
||
"completion_tokens": 50,
|
||
"cache_read_input_tokens": 60,
|
||
"cache_creation_input_tokens": 20
|
||
}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["usage"]["cache_read_input_tokens"], 60);
|
||
assert_eq!(result["usage"]["cache_creation_input_tokens"], 20);
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_finish_reason_content_filter_maps_end_turn() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {"role": "assistant", "content": "Blocked"},
|
||
"finish_reason": "content_filter"
|
||
}],
|
||
"usage": {"prompt_tokens": 10, "completion_tokens": 1}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["stop_reason"], "end_turn");
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_with_legacy_function_call() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {
|
||
"role": "assistant",
|
||
"content": null,
|
||
"function_call": {
|
||
"name": "get_weather",
|
||
"arguments": "{\"location\":\"Tokyo\"}"
|
||
}
|
||
},
|
||
"finish_reason": "function_call"
|
||
}],
|
||
"usage": {"prompt_tokens": 10, "completion_tokens": 5}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["content"][0]["type"], "tool_use");
|
||
assert_eq!(result["content"][0]["name"], "get_weather");
|
||
assert_eq!(result["content"][0]["input"]["location"], "Tokyo");
|
||
assert_eq!(result["stop_reason"], "tool_use");
|
||
}
|
||
|
||
#[test]
|
||
fn test_openai_to_anthropic_with_content_parts_and_refusal() {
|
||
let input = json!({
|
||
"id": "chatcmpl-123",
|
||
"model": "gpt-4",
|
||
"choices": [{
|
||
"index": 0,
|
||
"message": {
|
||
"role": "assistant",
|
||
"content": [
|
||
{"type": "text", "text": "Hello"},
|
||
{"type": "refusal", "refusal": "I can't do that"}
|
||
]
|
||
},
|
||
"finish_reason": "stop"
|
||
}],
|
||
"usage": {"prompt_tokens": 10, "completion_tokens": 5}
|
||
});
|
||
|
||
let result = openai_to_anthropic(input).unwrap();
|
||
assert_eq!(result["content"][0]["type"], "text");
|
||
assert_eq!(result["content"][0]["text"], "Hello");
|
||
assert_eq!(result["content"][1]["type"], "text");
|
||
assert_eq!(result["content"][1]["text"], "I can't do that");
|
||
}
|
||
|
||
#[test]
|
||
fn test_is_openai_o_series() {
|
||
assert!(is_openai_o_series("o1"));
|
||
assert!(is_openai_o_series("o1-preview"));
|
||
assert!(is_openai_o_series("o1-mini"));
|
||
assert!(is_openai_o_series("o3"));
|
||
assert!(is_openai_o_series("o3-mini"));
|
||
assert!(is_openai_o_series("o4-mini"));
|
||
assert!(!is_openai_o_series("gpt-4o"));
|
||
assert!(!is_openai_o_series("openai-gpt"));
|
||
assert!(!is_openai_o_series("o"));
|
||
assert!(!is_openai_o_series(""));
|
||
}
|
||
|
||
#[test]
|
||
fn test_supports_reasoning_effort() {
|
||
assert!(supports_reasoning_effort("o1"));
|
||
assert!(supports_reasoning_effort("o3-mini"));
|
||
assert!(supports_reasoning_effort("gpt-5"));
|
||
assert!(supports_reasoning_effort("gpt-5.4"));
|
||
assert!(supports_reasoning_effort("gpt-5-codex"));
|
||
assert!(!supports_reasoning_effort("gpt-4o"));
|
||
assert!(!supports_reasoning_effort("claude-sonnet-4-6"));
|
||
}
|
||
|
||
// ── resolve_reasoning_effort unit tests ──
|
||
|
||
#[test]
|
||
fn test_output_config_low_maps_to_reasoning_effort_low() {
|
||
let body = json!({"output_config": {"effort": "low"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("low"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_output_config_medium_maps_to_reasoning_effort_medium() {
|
||
let body = json!({"output_config": {"effort": "medium"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("medium"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_output_config_high_maps_to_reasoning_effort_high() {
|
||
let body = json!({"output_config": {"effort": "high"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("high"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_output_config_max_maps_to_reasoning_effort_xhigh() {
|
||
let body = json!({"output_config": {"effort": "max"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("xhigh"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_output_config_takes_priority_over_thinking() {
|
||
// Even with thinking.adaptive present, explicit effort wins
|
||
let body = json!({
|
||
"output_config": {"effort": "low"},
|
||
"thinking": {"type": "adaptive"}
|
||
});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("low"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_output_config_unknown_value_no_reasoning_effort() {
|
||
let body = json!({"output_config": {"effort": "turbo"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), None);
|
||
}
|
||
|
||
#[test]
|
||
fn test_thinking_enabled_small_budget_maps_low() {
|
||
let body = json!({"thinking": {"type": "enabled", "budget_tokens": 1024}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("low"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_thinking_enabled_medium_budget_maps_medium() {
|
||
let body = json!({"thinking": {"type": "enabled", "budget_tokens": 8000}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("medium"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_thinking_enabled_large_budget_maps_high() {
|
||
let body = json!({"thinking": {"type": "enabled", "budget_tokens": 32000}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("high"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_thinking_enabled_without_budget_maps_high() {
|
||
let body = json!({"thinking": {"type": "enabled"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("high"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_thinking_adaptive_maps_high() {
|
||
let body = json!({"thinking": {"type": "adaptive"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), Some("high"));
|
||
}
|
||
|
||
#[test]
|
||
fn test_thinking_disabled_no_reasoning_effort() {
|
||
let body = json!({"thinking": {"type": "disabled"}});
|
||
assert_eq!(resolve_reasoning_effort(&body), None);
|
||
}
|
||
|
||
#[test]
|
||
fn test_no_thinking_field_no_reasoning_effort() {
|
||
let body = json!({"messages": [{"role": "user", "content": "Hello"}]});
|
||
assert_eq!(resolve_reasoning_effort(&body), None);
|
||
}
|
||
|
||
// ── Integration: anthropic_to_openai with resolve_reasoning_effort ──
|
||
|
||
#[test]
|
||
fn test_non_reasoning_model_no_reasoning_effort() {
|
||
let input = json!({
|
||
"model": "gpt-4o",
|
||
"max_tokens": 1024,
|
||
"thinking": {"type": "enabled", "budget_tokens": 2048},
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert!(result.get("reasoning_effort").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn test_reasoning_model_with_output_config_effort() {
|
||
let input = json!({
|
||
"model": "gpt-5.4",
|
||
"max_tokens": 1024,
|
||
"output_config": {"effort": "medium"},
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["reasoning_effort"], "medium");
|
||
}
|
||
|
||
#[test]
|
||
fn test_reasoning_model_with_output_config_max() {
|
||
let input = json!({
|
||
"model": "gpt-5.4",
|
||
"max_tokens": 1024,
|
||
"output_config": {"effort": "max"},
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["reasoning_effort"], "xhigh");
|
||
}
|
||
|
||
#[test]
|
||
fn test_reasoning_model_thinking_enabled_small_budget() {
|
||
let input = json!({
|
||
"model": "o3",
|
||
"max_tokens": 1024,
|
||
"thinking": {"type": "enabled", "budget_tokens": 2048},
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["reasoning_effort"], "low");
|
||
}
|
||
|
||
#[test]
|
||
fn test_reasoning_model_thinking_adaptive() {
|
||
let input = json!({
|
||
"model": "gpt-5.4",
|
||
"max_tokens": 1024,
|
||
"thinking": {"type": "adaptive"},
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["reasoning_effort"], "high");
|
||
}
|
||
|
||
#[test]
|
||
fn test_reasoning_model_no_thinking_no_effort() {
|
||
let input = json!({
|
||
"model": "gpt-5.4",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert!(result.get("reasoning_effort").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_o_series_max_completion_tokens() {
|
||
for model in &["o1", "o3-mini", "o4-mini"] {
|
||
let input = json!({
|
||
"model": model,
|
||
"max_tokens": 4096,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert!(
|
||
result.get("max_tokens").is_none(),
|
||
"{model} should not have max_tokens"
|
||
);
|
||
assert_eq!(
|
||
result["max_completion_tokens"], 4096,
|
||
"{model} should use max_completion_tokens"
|
||
);
|
||
}
|
||
}
|
||
|
||
#[test]
|
||
fn test_anthropic_to_openai_non_o_series_keeps_max_tokens() {
|
||
let input = json!({
|
||
"model": "gpt-4o",
|
||
"max_tokens": 1024,
|
||
"messages": [{"role": "user", "content": "Hello"}]
|
||
});
|
||
|
||
let result = anthropic_to_openai(input, None).unwrap();
|
||
assert_eq!(result["max_tokens"], 1024);
|
||
assert!(result.get("max_completion_tokens").is_none());
|
||
}
|
||
}
|