4 Downloads Updated 20 hours ago
ollama run jordimurgo/medgemma1.5-thinking:q4_K_M
Updated 20 hours ago
20 hours ago
589619ac1fdc · 3.3GB ·
This model is derived from the official Ollama medgemma1.5:latest model and adds native support for Ollama’s thinking interface.
Compared with the official model:
message.thinking.<unused94> thought<unused95>temperature to 0 for stable delimiter generation and deterministic decoding.The following components are unchanged:
ollama run jordimurgo/medgemma1.5-thinking:q4_K_M --think
Thinking is exposed separately from the final response. To hide it in the CLI:
ollama run jordimurgo/medgemma1.5-thinking:q4_K_M --hidethinking
curl http://localhost:11434/api/chat -d '{
"model": "jordimurgo/medgemma1.5-thinking:q4_K_M",
"messages": [
{
"role": "user",
"content": "Explain the possible findings in this medical image."
}
],
"think": true,
"stream": false
}'
The response uses separate fields:
{
"message": {
"role": "assistant",
"thinking": "Internal reasoning trace...",
"content": "Final answer..."
}
}
medgemma1.5:latestMedGemma is intended as a foundation model for healthcare and life-science development. It has not been validated for direct clinical use.
Its outputs must not be used directly for diagnosis, treatment, patient management or other clinical decisions without appropriate validation and independent professional review.
MedGemma has not been evaluated or optimized for multi-turn applications.
This derivative remains subject to the Health AI Developer Foundations Terms of Use:
https://developers.google.com/health-ai-developer-foundations/terms
HAI-DEF is provided under and subject to the Health AI Developer Foundations Terms of Use. Only the Ollama chat template and decoding temperature were modified; the model weights and tokenizer remain unchanged.