The model dosn't support tooling or agents

#41
by limbo0x01 - opened

I've tried to run the model with tooling and agents not a single one worked with it, not with v1 or even this one v2.
it gives errors like:
2026-06-24 03:32:17 [ERROR]
[Server Error] {
"error": {
"message": "Error rendering prompt with jinja template: "Cannot call something that is not a function: got UndefinedValue".\n\nThis is usually an issue with the model's prompt template. If you are using a popular model, you can try to search the model under lmstudio-community, which will have fixed prompt templates. If you cannot find one, you are welcome to post this issue to our discord or issue tracker on GitHub. Alternatively, if you know how to write jinja templates, you can override the prompt template in My Models > model settings > Prompt Template.",
"type": "internal_error",
"param": null,
"code": "unknown"
}
}
Tried with openclaw, Hermes and even simple curl request.

curl http://localhost:1234/v1/responses
-H "Content-Type: application/json"
-d '{
"model": "gemma-4-12b-agentic-fable5-composer2.5-v2-3.5x-tau2",
"input": "What is the weather like in Boston today?",
"tools": [
{
"type": "function",
"name": "get_current_weather",
"description": "Get the current weather in a given location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
},
"unit": {
"type": "string",
"enum": [
"celsius",
"fahrenheit"
]
}
},
"required": [
"location",
"unit"
]
}
}
],
"tool_choice": "auto"
}'

nothing worked, have any one tried to run it with ageents, ive 4090

Sign up or log in to comment