()
| 89 | |
| 90 | |
| 91 | def _ensure_generation_handler() -> GenerationHandler: |
| 92 | if generation_handler is None: |
| 93 | raise HTTPException(status_code=500, detail="Generation handler not initialized") |
| 94 | return generation_handler |
| 95 | |
| 96 | |
| 97 | def _build_model_description(model_config: Dict[str, Any]) -> str: |
no outgoing calls
no test coverage detected