Spaces:
Running
Running
File size: 30,940 Bytes
587f33e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 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 334 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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 | # Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Utility functions for interacting with Gemini and Claude APIs, image processing, and PDF handling.
"""
import json
import asyncio
import base64
from io import BytesIO
from functools import partial
from ast import literal_eval
from typing import List, Dict, Any
import httpx
import aiofiles
from PIL import Image
from google import genai
from google.genai import types
from anthropic import AsyncAnthropic
from openai import AsyncOpenAI
import os
import yaml
from pathlib import Path
# Load config
config_path = Path(__file__).parent.parent / "configs" / "model_config.yaml"
model_config = {}
if config_path.exists():
with open(config_path, "r", encoding="utf-8-sig") as f:
model_config = yaml.safe_load(f) or {}
def get_config_val(section, key, env_var, default=""):
val = os.getenv(env_var)
if not val and section in model_config:
val = model_config[section].get(key)
return val or default
# Initialize clients lazily or with robust defaults
gemini_client = None
anthropic_client = None
openai_client = None
openrouter_client = None
openrouter_api_key = ""
def reinitialize_clients():
"""(Re)build all API clients from current env vars / config file.
Called once at module load and can be called again at runtime
(e.g. after the user sets new API keys via the Gradio UI).
Returns a list of client names that were successfully initialized.
"""
global gemini_client, anthropic_client, openai_client
global openrouter_client, openrouter_api_key
initialized = []
api_key = get_config_val("api_keys", "google_api_key", "GOOGLE_API_KEY", "")
if api_key:
gemini_client = genai.Client(api_key=api_key)
print("Initialized Gemini Client with API Key")
initialized.append("Gemini")
else:
gemini_client = None
key = get_config_val("api_keys", "anthropic_api_key", "ANTHROPIC_API_KEY", "")
if key:
anthropic_client = AsyncAnthropic(api_key=key)
print("Initialized Anthropic Client with API Key")
initialized.append("Anthropic")
else:
anthropic_client = None
key = get_config_val("api_keys", "openai_api_key", "OPENAI_API_KEY", "")
if key:
openai_client = AsyncOpenAI(api_key=key)
print("Initialized OpenAI Client with API Key")
initialized.append("OpenAI")
else:
openai_client = None
openrouter_api_key = get_config_val("api_keys", "openrouter_api_key", "OPENROUTER_API_KEY", "")
if openrouter_api_key:
openrouter_client = AsyncOpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=openrouter_api_key,
)
print("Initialized OpenRouter Client with API Key")
initialized.append("OpenRouter")
else:
openrouter_client = None
return initialized
# Run once at import time (preserves original behaviour)
reinitialize_clients()
def _convert_to_gemini_parts(contents: List[Dict[str, Any]]) -> List[types.Part]:
"""
Convert a generic content list to a list of Gemini's genai.types.Part objects.
"""
gemini_parts = []
for item in contents:
if item.get("type") == "text":
gemini_parts.append(types.Part.from_text(text=item["text"]))
elif item.get("type") == "image":
source = item.get("source", {})
if source.get("type") == "base64":
gemini_parts.append(
types.Part.from_bytes(
data=base64.b64decode(source["data"]),
mime_type=source["media_type"],
)
)
elif "image_base64" in item:
# Shorthand format used by planner_agent
gemini_parts.append(
types.Part.from_bytes(
data=base64.b64decode(item["image_base64"]),
mime_type="image/jpeg",
)
)
return gemini_parts
async def call_gemini_with_retry_async(
model_name, contents, config, max_attempts=5, retry_delay=5, error_context=""
):
"""
ASYNC: Call Gemini API with asynchronous retry logic.
"""
if gemini_client is None:
raise RuntimeError(
"Gemini client was not initialized: missing Google API key. "
"Please set GOOGLE_API_KEY in environment, or configure api_keys.google_api_key in configs/model_config.yaml."
)
result_list = []
target_candidate_count = config.candidate_count
# Gemini API max candidate count is 8. We will call multiple times if needed.
if config.candidate_count > 8:
config.candidate_count = 8
current_contents = contents
for attempt in range(max_attempts):
try:
# Use global client
client = gemini_client
# Convert generic content list to Gemini's format right before the API call
gemini_contents = _convert_to_gemini_parts(current_contents)
response = await client.aio.models.generate_content(
model=model_name, contents=gemini_contents, config=config
)
# If we are using Image Generation models to generate images
if (
"nanoviz" in model_name
or "image" in model_name
):
raw_response_list = []
if not response.candidates or not response.candidates[0].content.parts:
print(
f"[Warning]: Failed to generate image, retrying in {retry_delay} seconds..."
)
await asyncio.sleep(retry_delay)
continue
# In this mode, we can only have one candidate
for part in response.candidates[0].content.parts:
if part.inline_data:
# Append base64 encoded image data to raw_response_list
raw_response_list.append(
base64.b64encode(part.inline_data.data).decode("utf-8")
)
break
# Otherwise, for text generation models
else:
raw_response_list = [
part.text
for candidate in response.candidates
for part in candidate.content.parts
if part.text is not None
]
result_list.extend([r for r in raw_response_list if r and r.strip() != ""])
if len(result_list) >= target_candidate_count:
result_list = result_list[:target_candidate_count]
break
except Exception as e:
context_msg = f" for {error_context}" if error_context else ""
# Exponential backoff (capped at 30s)
current_delay = min(retry_delay * (2 ** attempt), 30)
print(
f"Attempt {attempt + 1} for model {model_name} failed{context_msg}: {e}. Retrying in {current_delay} seconds..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(current_delay)
else:
print(f"Error: All {max_attempts} attempts failed{context_msg}")
result_list = ["Error"] * target_candidate_count
if len(result_list) < target_candidate_count:
result_list.extend(["Error"] * (target_candidate_count - len(result_list)))
return result_list
def _convert_to_claude_format(contents: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
"""
Converts the generic content list to Claude's API format.
Currently, the formats are identical, so this acts as a pass-through
for architectural consistency and future-proofing.
Claude API's format:
[
{"type": "text", "text": "some text"},
{"type": "image", "source": {"type": "base64", "media_type": "image/jpeg", "data": "..."}},
...
]
"""
return contents
def _convert_to_openai_format(contents: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
"""
Converts the generic content list (Claude format) to OpenAI's API format.
Claude format:
[
{"type": "text", "text": "some text"},
{"type": "image", "source": {"type": "base64", "media_type": "image/jpeg", "data": "..."}},
...
]
OpenAI format:
[
{"type": "text", "text": "some text"},
{"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,..."}},
...
]
"""
openai_contents = []
for item in contents:
if item.get("type") == "text":
openai_contents.append({"type": "text", "text": item["text"]})
elif item.get("type") == "image":
source = item.get("source", {})
if source.get("type") == "base64":
media_type = source.get("media_type", "image/jpeg")
data = source.get("data", "")
data_url = f"data:{media_type};base64,{data}"
openai_contents.append({
"type": "image_url",
"image_url": {"url": data_url}
})
elif "image_base64" in item:
# Shorthand format used by planner_agent
data_url = f"data:image/jpeg;base64,{item['image_base64']}"
openai_contents.append({
"type": "image_url",
"image_url": {"url": data_url}
})
return openai_contents
async def call_claude_with_retry_async(
model_name, contents, config, max_attempts=5, retry_delay=30, error_context=""
):
"""
ASYNC: Call Claude API with asynchronous retry logic.
This version efficiently handles input size errors by validating and modifying
the content list once before generating all candidates.
"""
system_prompt = config["system_prompt"]
temperature = config["temperature"]
candidate_num = config["candidate_num"]
max_output_tokens = config["max_output_tokens"]
response_text_list = []
# --- Preparation Phase ---
# Convert to the Claude-specific format and perform an initial optimistic resize.
current_contents = contents
# --- Validation and Remediation Phase ---
# We loop until we get a single successful response, proving the input is valid.
# Note that this check is required because Claude only has 128k / 256k context windows.
# For Gemini series that support 1M, we do not need this step.
is_input_valid = False
for attempt in range(max_attempts):
try:
claude_contents = _convert_to_claude_format(current_contents)
# Attempt to generate the very first candidate.
first_response = await anthropic_client.messages.create(
model=model_name,
max_tokens=max_output_tokens,
temperature=temperature,
messages=[{"role": "user", "content": claude_contents}],
system=system_prompt,
)
response_text_list.append(first_response.content[0].text)
is_input_valid = True
break
except Exception as e:
error_str = str(e).lower()
context_msg = f" for {error_context}" if error_context else ""
print(
f"Validation attempt {attempt + 1} failed{context_msg}: {error_str}. Retrying in {retry_delay} seconds..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
# --- Sampling Phase ---
if not is_input_valid:
print(
f"Error: All {max_attempts} attempts failed to validate the input{context_msg}. Returning errors."
)
return ["Error"] * candidate_num
# We already have 1 successful candidate, now generate the rest.
remaining_candidates = candidate_num - 1
if remaining_candidates > 0:
print(
f"Input validated. Now generating remaining {remaining_candidates} candidates..."
)
valid_claude_contents = _convert_to_claude_format(current_contents)
tasks = [
anthropic_client.messages.create(
model=model_name,
max_tokens=max_output_tokens,
temperature=temperature,
messages=[
{"role": "user", "content": valid_claude_contents}
],
system=system_prompt,
)
for _ in range(remaining_candidates)
]
results = await asyncio.gather(*tasks, return_exceptions=True)
for res in results:
if isinstance(res, Exception):
print(f"Error generating a subsequent candidate: {res}")
response_text_list.append("Error")
else:
response_text_list.append(res.content[0].text)
return response_text_list
async def call_openai_with_retry_async(
model_name, contents, config, max_attempts=5, retry_delay=30, error_context=""
):
"""
ASYNC: Call OpenAI API with asynchronous retry logic.
This follows the same pattern as Claude's implementation.
"""
system_prompt = config["system_prompt"]
temperature = config["temperature"]
candidate_num = config["candidate_num"]
max_completion_tokens = config["max_completion_tokens"]
response_text_list = []
# --- Preparation Phase ---
# Convert to the OpenAI-specific format
current_contents = contents
# --- Validation and Remediation Phase ---
# We loop until we get a single successful response, proving the input is valid.
is_input_valid = False
for attempt in range(max_attempts):
try:
openai_contents = _convert_to_openai_format(current_contents)
# Attempt to generate the very first candidate.
first_response = await openai_client.chat.completions.create(
model=model_name,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": openai_contents}
],
temperature=temperature,
max_completion_tokens=max_completion_tokens,
)
# If we reach here, the input is valid.
content = first_response.choices[0].message.content or ""
if not content.strip():
print(f"OpenAI returned empty content, retrying...")
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
continue
response_text_list.append(content)
is_input_valid = True
break # Exit the validation loop
except Exception as e:
error_str = str(e).lower()
context_msg = f" for {error_context}" if error_context else ""
print(
f"Validation attempt {attempt + 1} failed{context_msg}: {error_str}. Retrying in {retry_delay} seconds..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
# --- Sampling Phase ---
if not is_input_valid:
print(
f"Error: All {max_attempts} attempts failed to validate the input{context_msg}. Returning errors."
)
return ["Error"] * candidate_num
# We already have 1 successful candidate, now generate the rest.
remaining_candidates = candidate_num - 1
if remaining_candidates > 0:
print(
f"Input validated. Now generating remaining {remaining_candidates} candidates..."
)
valid_openai_contents = _convert_to_openai_format(current_contents)
tasks = [
openai_client.chat.completions.create(
model=model_name,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": valid_openai_contents}
],
temperature=temperature,
max_completion_tokens=max_completion_tokens,
)
for _ in range(remaining_candidates)
]
results = await asyncio.gather(*tasks, return_exceptions=True)
for res in results:
if isinstance(res, Exception):
print(f"Error generating a subsequent candidate: {res}")
response_text_list.append("Error")
else:
response_text_list.append(res.choices[0].message.content or "Error")
return response_text_list
async def call_openai_image_generation_with_retry_async(
model_name, prompt, config, max_attempts=5, retry_delay=30, error_context=""
):
"""
ASYNC: Call OpenAI Image Generation API (GPT-Image) with asynchronous retry logic.
"""
size = config.get("size", "1536x1024")
quality = config.get("quality", "high")
background = config.get("background", "opaque")
output_format = config.get("output_format", "png")
# Base parameters for all models
gen_params = {
"model": model_name,
"prompt": prompt,
"n": 1,
"size": size,
}
# Add GPT-Image specific parameters
gen_params.update({
"quality": quality,
"background": background,
"output_format": output_format,
})
for attempt in range(max_attempts):
try:
response = await openai_client.images.generate(**gen_params)
# OpenAI images.generate returns a list of images in response.data
if response.data and response.data[0].b64_json:
return [response.data[0].b64_json]
else:
print(f"[Warning]: Failed to generate image via OpenAI, no data returned.")
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
continue
except Exception as e:
context_msg = f" for {error_context}" if error_context else ""
print(
f"Attempt {attempt + 1} for OpenAI image generation model {model_name} failed{context_msg}: {e}. Retrying in {retry_delay} seconds..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
else:
print(f"Error: All {max_attempts} attempts failed{context_msg}")
return ["Error"]
return ["Error"]
async def call_openrouter_with_retry_async(
model_name, contents, config, max_attempts=5, retry_delay=30, error_context=""
):
"""
ASYNC: Call OpenRouter API (OpenAI-compatible) with asynchronous retry logic.
"""
if openrouter_client is None:
raise RuntimeError(
"OpenRouter client was not initialized: missing API key. "
"Please set OPENROUTER_API_KEY in environment, or configure "
"api_keys.openrouter_api_key in configs/model_config.yaml."
)
model_name = _to_openrouter_model_id(model_name)
system_prompt = config["system_prompt"]
temperature = config["temperature"]
candidate_num = config["candidate_num"]
max_completion_tokens = config["max_completion_tokens"]
response_text_list = []
current_contents = contents
is_input_valid = False
for attempt in range(max_attempts):
try:
openai_contents = _convert_to_openai_format(current_contents)
first_response = await openrouter_client.chat.completions.create(
model=model_name,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": openai_contents},
],
temperature=temperature,
max_completion_tokens=max_completion_tokens,
)
content = first_response.choices[0].message.content or ""
if not content.strip():
print(f"OpenRouter returned empty content, retrying...")
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
continue
response_text_list.append(content)
is_input_valid = True
break
except Exception as e:
error_str = str(e).lower()
context_msg = f" for {error_context}" if error_context else ""
current_delay = min(retry_delay * (2 ** attempt), 60)
print(
f"OpenRouter attempt {attempt + 1} failed{context_msg}: {error_str}. "
f"Retrying in {current_delay}s..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(current_delay)
if not is_input_valid:
context_msg = f" for {error_context}" if error_context else ""
print(f"Error: All {max_attempts} OpenRouter attempts failed{context_msg}.")
return ["Error"] * candidate_num
remaining_candidates = candidate_num - 1
if remaining_candidates > 0:
valid_openai_contents = _convert_to_openai_format(current_contents)
tasks = [
openrouter_client.chat.completions.create(
model=model_name,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": valid_openai_contents},
],
temperature=temperature,
max_completion_tokens=max_completion_tokens,
)
for _ in range(remaining_candidates)
]
results = await asyncio.gather(*tasks, return_exceptions=True)
for res in results:
if isinstance(res, Exception):
print(f"Error generating a subsequent OpenRouter candidate: {res}")
response_text_list.append("Error")
else:
response_text_list.append(res.choices[0].message.content or "Error")
return response_text_list
async def call_openrouter_image_generation_with_retry_async(
model_name, contents, config, max_attempts=5, retry_delay=30, error_context=""
):
"""
ASYNC: Call OpenRouter image generation via direct httpx POST to avoid
openai SDK issues with extra_body dropping the model field.
Images are returned in choices[0].message.content as inline_data or
in choices[0].message.images as data URLs.
"""
if not openrouter_api_key:
raise RuntimeError(
"OpenRouter client was not initialized: missing API key."
)
system_prompt = config.get("system_prompt", "")
temperature = config.get("temperature", 1.0)
aspect_ratio = config.get("aspect_ratio", "1:1")
image_size = config.get("image_size", "1k")
model_name = _to_openrouter_model_id(model_name)
openai_contents = _convert_to_openai_format(contents)
image_config = {}
if aspect_ratio:
image_config["aspect_ratio"] = aspect_ratio
if image_size:
image_config["image_size"] = image_size
payload = {
"model": model_name,
"messages": [
{"role": "system", "content": system_prompt},
{"role": "user", "content": openai_contents},
],
"temperature": temperature,
"modalities": ["image", "text"],
}
if image_config:
payload["image_config"] = image_config
headers = {
"Authorization": f"Bearer {openrouter_api_key}",
"Content-Type": "application/json",
}
for attempt in range(max_attempts):
try:
async with httpx.AsyncClient(timeout=300) as client:
resp = await client.post(
"https://openrouter.ai/api/v1/chat/completions",
headers=headers,
json=payload,
)
resp.raise_for_status()
data = resp.json()
choices = data.get("choices", [])
if not choices:
print(f"[Warning]: OpenRouter image generation returned no choices, retrying...")
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
continue
message = choices[0].get("message", {})
# Try extracting from inline_data in content (Gemini-style)
content = message.get("content")
if isinstance(content, list):
for part in content:
if isinstance(part, dict) and "inline_data" in part:
b64_data = part["inline_data"].get("data", "")
if b64_data:
return [b64_data]
# Try extracting from images field (OpenRouter standard)
images = message.get("images")
if images and len(images) > 0:
img_item = images[0]
if isinstance(img_item, dict):
data_url = img_item.get("image_url", {}).get("url", "")
else:
data_url = str(img_item)
if "," in data_url:
b64_data = data_url.split(",", 1)[1]
else:
b64_data = data_url
if b64_data:
return [b64_data]
# Try extracting base64 from text content
if isinstance(content, str) and content.startswith("data:image"):
if "," in content:
b64_data = content.split(",", 1)[1]
if b64_data:
return [b64_data]
print(f"[Warning]: OpenRouter image generation returned no images, retrying...")
if attempt < max_attempts - 1:
await asyncio.sleep(retry_delay)
continue
except httpx.HTTPStatusError as e:
context_msg = f" for {error_context}" if error_context else ""
current_delay = min(retry_delay * (2 ** attempt), 60)
print(
f"OpenRouter image gen attempt {attempt + 1} failed{context_msg}: "
f"HTTP {e.response.status_code} - {e.response.text}. "
f"Retrying in {current_delay}s..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(current_delay)
else:
print(f"Error: All {max_attempts} attempts failed{context_msg}")
return ["Error"]
except Exception as e:
context_msg = f" for {error_context}" if error_context else ""
current_delay = min(retry_delay * (2 ** attempt), 60)
print(
f"OpenRouter image gen attempt {attempt + 1} failed{context_msg}: {e}. "
f"Retrying in {current_delay}s..."
)
if attempt < max_attempts - 1:
await asyncio.sleep(current_delay)
else:
print(f"Error: All {max_attempts} attempts failed{context_msg}")
return ["Error"]
return ["Error"]
def _to_openrouter_model_id(model_name: str) -> str:
"""Convert a bare model name to OpenRouter format (provider/model).
OpenRouter requires model IDs like 'google/gemini-3-pro-preview'.
If the name already contains '/', assume it's already qualified.
Otherwise, prefix with 'google/' for Gemini models.
"""
if "/" in model_name:
return model_name
if model_name.startswith("gemini"):
return f"google/{model_name}"
return model_name
async def call_model_with_retry_async(
model_name, contents, config, max_attempts=5, retry_delay=5, error_context=""
):
"""
Unified router that dispatches to the correct provider based on model_name.
Routing rules:
1. Explicit prefix overrides: "openrouter/" -> OpenRouter, "claude-" -> Anthropic,
"gpt-"/"o1-"/"o3-"/"o4-" -> OpenAI
2. No prefix: auto-detect based on which API key is configured.
Priority: OpenRouter > Gemini > Anthropic > OpenAI
"""
# Explicit provider prefix overrides auto-detection
if model_name.startswith("openrouter/"):
provider = "openrouter"
actual_model = model_name[len("openrouter/"):]
elif model_name.startswith("claude-"):
provider = "anthropic"
actual_model = model_name
elif any(model_name.startswith(p) for p in ("gpt-", "o1-", "o3-", "o4-")):
provider = "openai"
actual_model = model_name
else:
# Auto-detect provider based on which API key is configured
actual_model = model_name
if openrouter_client is not None:
provider = "openrouter"
actual_model = _to_openrouter_model_id(model_name)
elif gemini_client is not None:
provider = "gemini"
elif anthropic_client is not None:
provider = "anthropic"
elif openai_client is not None:
provider = "openai"
else:
raise RuntimeError(
"No API client available. Please configure at least one API key "
"in configs/model_config.yaml or via environment variables."
)
if provider == "gemini":
return await call_gemini_with_retry_async(
model_name=actual_model,
contents=contents,
config=config,
max_attempts=max_attempts,
retry_delay=retry_delay,
error_context=error_context,
)
# Convert Gemini GenerateContentConfig -> dict for OpenAI/Claude/OpenRouter
cfg_dict = {
"system_prompt": config.system_instruction if hasattr(config, "system_instruction") else "",
"temperature": config.temperature if hasattr(config, "temperature") else 1.0,
"candidate_num": config.candidate_count if hasattr(config, "candidate_count") else 1,
"max_completion_tokens": config.max_output_tokens if hasattr(config, "max_output_tokens") else 50000,
}
call_fn = {
"openrouter": call_openrouter_with_retry_async,
"anthropic": call_claude_with_retry_async,
"openai": call_openai_with_retry_async,
}[provider]
return await call_fn(
model_name=actual_model,
contents=contents,
config=cfg_dict,
max_attempts=max_attempts,
retry_delay=retry_delay,
error_context=error_context,
)
|