Return fallback model configuration when config file is unavailable.
()
| 276 | |
| 277 | |
| 278 | def _get_fallback_models(): |
| 279 | """Return fallback model configuration when config file is unavailable.""" |
| 280 | google = "gemini-2.0-flash" |
| 281 | anthropic = "claude-sonnet-4-20250514" |
| 282 | openai = "o3-mini" |
| 283 | return { |
| 284 | "google": google, |
| 285 | "google_planning": google, |
| 286 | "google_implementation": google, |
| 287 | "anthropic": anthropic, |
| 288 | "anthropic_planning": anthropic, |
| 289 | "anthropic_implementation": anthropic, |
| 290 | "openai": openai, |
| 291 | "openai_planning": openai, |
| 292 | "openai_implementation": openai, |
| 293 | } |
| 294 | |
| 295 | |
| 296 | def get_document_segmentation_config( |
no outgoing calls
no test coverage detected