(self, model_path: str)
| 268 | "Model adapater for tool-llama-single-round" |
| 269 | |
| 270 | def match(self, model_path: str): |
| 271 | return "tool-llama-single-round" == model_path |
| 272 | |
| 273 | def load_model(self, model_path: str, from_pretrained_kwargs: dict): |
| 274 | tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False, model_max_length=8192) |
nothing calls this directly
no outgoing calls
no test coverage detected