(self)
| 267 | return "chat_completions" |
| 268 | |
| 269 | def get_stats(self) -> Dict[str, Any]: |
| 270 | return { |
| 271 | "active_backend": self.backend_name, |
| 272 | "host": self._host, |
| 273 | "port": self._port, |
| 274 | "calls_made": self._calls_made, |
| 275 | } |
| 276 | |
| 277 | |
| 278 | # Global singleton |
no outgoing calls