Factory function to create an inference client
()
| 2138 | } |
| 2139 | |
| 2140 | def create_inference_client() -> InferenceClient: |
| 2141 | """Factory function to create an inference client""" |
| 2142 | return InferenceClient() |
| 2143 | |
| 2144 | def parse_model_string(model: str) -> ModelConfig: |
| 2145 | """Parse the model string to extract base model and adapter IDs""" |
no test coverage detected