George D. Torres

Results 2 issues of George D. Torres

If using a `model-settings.json` of the following form: ```json { "name": "my-model", "implementation": "mlserver_huggingface.HuggingFaceRuntime", "parameters": { "extra": { "task": "text-generation", "pretrained_model": "model/path", "model_kwargs": { "load_in_8bit": true } } } }...

Currently if an unknown tool name is provided by the model, a `ModelRetry(f'Unknown tool name: {name!r}. {msg}')` is raised and subsequently it will move to the retry step [here](https://github.com/pydantic/pydantic-ai/blob/1a35af53d7105f06df9e056f21651942fa2aeb6d/pydantic_ai_slim/pydantic_ai/_tool_manager.py#L178). In...