(self)
| 43 | return self.provider_id == "custom_host" |
| 44 | |
| 45 | def allow_function_call(self): |
| 46 | return self.type == "chat_completion" and self.properties.get("function_call", False) |
| 47 | |
| 48 | def allow_streaming(self): |
| 49 | return self.type == "chat_completion" and self.properties.get("streaming", False) |
no test coverage detected