ccproxy.adapters.openai¶
ccproxy.adapters.openai
¶
OpenAI adapter module for API format conversion.
This module provides the OpenAI adapter implementation for converting between OpenAI and Anthropic API formats.
OpenAIAdapter
¶
Bases: APIAdapter
OpenAI API adapter for converting between OpenAI and Anthropic formats.
Source code in ccproxy/adapters/openai/adapter.py
adapt_request
¶
Convert OpenAI request format to Anthropic format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request
|
dict[str, Any]
|
OpenAI format request |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
Anthropic format request |
Raises:
Type | Description |
---|---|
ValueError
|
If the request format is invalid or unsupported |
Source code in ccproxy/adapters/openai/adapter.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
|
adapt_response
¶
Convert Anthropic response format to OpenAI format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
response
|
dict[str, Any]
|
Anthropic format response |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
OpenAI format response |
Raises:
Type | Description |
---|---|
ValueError
|
If the response format is invalid or unsupported |
Source code in ccproxy/adapters/openai/adapter.py
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
|
adapt_stream
async
¶
Convert Anthropic streaming response to OpenAI streaming format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
stream
|
AsyncIterator[dict[str, Any]]
|
Anthropic streaming response |
required |
Yields:
Type | Description |
---|---|
AsyncIterator[dict[str, Any]]
|
OpenAI format streaming chunks |
Raises:
Type | Description |
---|---|
ValueError
|
If the stream format is invalid or unsupported |
Source code in ccproxy/adapters/openai/adapter.py
adapt_error
¶
Convert Anthropic error format to OpenAI error format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
error_body
|
dict[str, Any]
|
Anthropic error response |
required |
Returns:
Type | Description |
---|---|
dict[str, Any]
|
OpenAI-formatted error response |
Source code in ccproxy/adapters/openai/adapter.py
OpenAISSEFormatter
¶
Formats streaming responses to match OpenAI's SSE format.
format_data_event
staticmethod
¶
format_first_chunk
staticmethod
¶
Format the first chunk with role and basic metadata.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_id
|
str
|
Unique identifier for the completion |
required |
model
|
str
|
Model name being used |
required |
created
|
int
|
Unix timestamp when the completion was created |
required |
role
|
str
|
Role of the assistant |
'assistant'
|
Returns:
Type | Description |
---|---|
str
|
Formatted SSE string |
Source code in ccproxy/adapters/openai/streaming.py
format_content_chunk
staticmethod
¶
Format a content chunk with text delta.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_id
|
str
|
Unique identifier for the completion |
required |
model
|
str
|
Model name being used |
required |
created
|
int
|
Unix timestamp when the completion was created |
required |
content
|
str
|
Text content to include in the delta |
required |
choice_index
|
int
|
Index of the choice (usually 0) |
0
|
Returns:
Type | Description |
---|---|
str
|
Formatted SSE string |
Source code in ccproxy/adapters/openai/streaming.py
format_tool_call_chunk
staticmethod
¶
format_tool_call_chunk(
message_id,
model,
created,
tool_call_id,
function_name=None,
function_arguments=None,
tool_call_index=0,
choice_index=0,
)
Format a tool call chunk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_id
|
str
|
Unique identifier for the completion |
required |
model
|
str
|
Model name being used |
required |
created
|
int
|
Unix timestamp when the completion was created |
required |
tool_call_id
|
str
|
ID of the tool call |
required |
function_name
|
str | None
|
Name of the function being called |
None
|
function_arguments
|
str | None
|
Arguments for the function |
None
|
tool_call_index
|
int
|
Index of the tool call |
0
|
choice_index
|
int
|
Index of the choice (usually 0) |
0
|
Returns:
Type | Description |
---|---|
str
|
Formatted SSE string |
Source code in ccproxy/adapters/openai/streaming.py
format_final_chunk
staticmethod
¶
Format the final chunk with finish_reason.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_id
|
str
|
Unique identifier for the completion |
required |
model
|
str
|
Model name being used |
required |
created
|
int
|
Unix timestamp when the completion was created |
required |
finish_reason
|
str
|
Reason for completion (stop, length, tool_calls, etc.) |
'stop'
|
choice_index
|
int
|
Index of the choice (usually 0) |
0
|
usage
|
dict[str, int] | None
|
Optional usage information to include |
None
|
Returns:
Type | Description |
---|---|
str
|
Formatted SSE string |
Source code in ccproxy/adapters/openai/streaming.py
format_error_chunk
staticmethod
¶
Format an error chunk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_id
|
str
|
Unique identifier for the completion |
required |
model
|
str
|
Model name being used |
required |
created
|
int
|
Unix timestamp when the completion was created |
required |
error_type
|
str
|
Type of error |
required |
error_message
|
str
|
Error message |
required |
Returns:
Type | Description |
---|---|
str
|
Formatted SSE string |
Source code in ccproxy/adapters/openai/streaming.py
OpenAIStreamProcessor
¶
OpenAIStreamProcessor(
message_id=None,
model="claude-3-5-sonnet-20241022",
created=None,
enable_usage=True,
enable_tool_calls=True,
enable_text_chunking=True,
chunk_size_words=3,
)
Processes Anthropic/Claude streaming responses into OpenAI format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_id
|
str | None
|
Response ID, generated if not provided |
None
|
model
|
str
|
Model name for responses |
'claude-3-5-sonnet-20241022'
|
created
|
int | None
|
Creation timestamp, current time if not provided |
None
|
enable_usage
|
bool
|
Whether to include usage information |
True
|
enable_tool_calls
|
bool
|
Whether to process tool calls |
True
|
enable_text_chunking
|
bool
|
Whether to chunk text content |
True
|
chunk_size_words
|
int
|
Number of words per text chunk |
3
|
Source code in ccproxy/adapters/openai/streaming.py
process_stream
async
¶
Process a Claude/Anthropic stream into OpenAI format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
claude_stream
|
AsyncIterator[dict[str, Any]]
|
Async iterator of Claude response chunks |
required |
Yields:
Type | Description |
---|---|
AsyncIterator[str]
|
OpenAI-formatted SSE strings |
Source code in ccproxy/adapters/openai/streaming.py
map_openai_model_to_claude
¶
Map OpenAI model name to Claude model name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
openai_model
|
str
|
OpenAI model identifier |
required |
Returns:
Type | Description |
---|---|
str
|
Claude model identifier |
Source code in ccproxy/adapters/openai/adapter.py
format_openai_tool_call
¶
Convert Anthropic tool use to OpenAI tool call format.