Instructions to use google/gemma-4-12B-it with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/gemma-4-12B-it with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("google/gemma-4-12B-it") model = AutoModelForMultimodalLM.from_pretrained("google/gemma-4-12B-it", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- AMD Developer Cloud
fix: chat_template, keep tool-call reasoning across later user turns
#49
by dimondev - opened
- chat_template.jinja +1 -1
chat_template.jinja
CHANGED
|
@@ -237,7 +237,7 @@
|
|
| 237 |
|
| 238 |
{#- Render reasoning/reasoning_content as thinking channel -#}
|
| 239 |
{%- set thinking_text = message.get('reasoning') or message.get('reasoning_content') -%}
|
| 240 |
-
{%- set thinking_gate = (loop.index0 > ns_turn.last_user_idx) or
|
| 241 |
{%- if thinking_text and thinking_gate -%}
|
| 242 |
{{- '<|channel>thought\n' + thinking_text + '\n<channel|>' -}}
|
| 243 |
{%- endif -%}
|
|
|
|
| 237 |
|
| 238 |
{#- Render reasoning/reasoning_content as thinking channel -#}
|
| 239 |
{%- set thinking_text = message.get('reasoning') or message.get('reasoning_content') -%}
|
| 240 |
+
{%- set thinking_gate = (loop.index0 > ns_turn.last_user_idx) or message.get('tool_calls') or preserve_thinking -%}
|
| 241 |
{%- if thinking_text and thinking_gate -%}
|
| 242 |
{{- '<|channel>thought\n' + thinking_text + '\n<channel|>' -}}
|
| 243 |
{%- endif -%}
|