(self, model_path: str)
| 250 | "Model adapater for tool-llama" |
| 251 | |
| 252 | def match(self, model_path: str): |
| 253 | return "tool-llama" == model_path |
| 254 | |
| 255 | def load_model(self, model_path: str, from_pretrained_kwargs: dict): |
| 256 | tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False) |
nothing calls this directly
no outgoing calls
no test coverage detected