nemotron3nano_test.go 25.7 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
package renderers

import (
	"testing"

	"github.com/google/go-cmp/cmp"

	"github.com/ollama/ollama/api"
)

func TestNemotron3NanoRenderer(t *testing.T) {
	tests := []struct {
		name       string
		msgs       []api.Message
		tools      []api.Tool
		thinkValue *api.ThinkValue
		isThinking bool
		expected   string
	}{
		{
			name: "basic user message - thinking mode",
			msgs: []api.Message{
				{Role: "user", Content: "Hello!"},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nHello!<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "basic user message - no thinking",
			msgs: []api.Message{
				{Role: "user", Content: "Hello!"},
			},
			isThinking: false,
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nHello!<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>",
		},
		{
			name: "with system message",
			msgs: []api.Message{
				{Role: "system", Content: "You are a helpful assistant."},
				{Role: "user", Content: "Hello!"},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n" +
				"<|im_start|>user\nHello!<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "multi-turn conversation",
			msgs: []api.Message{
				{Role: "user", Content: "Hi"},
				{Role: "assistant", Content: "Hello! How can I help?"},
				{Role: "user", Content: "Tell me a joke"},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nHi<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>Hello! How can I help?<|im_end|>\n" +
				"<|im_start|>user\nTell me a joke<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "with tools",
			msgs: []api.Message{
				{Role: "user", Content: "What's the weather in Paris?"},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name:        "get_weather",
						Description: "Get the current weather",
						Parameters: api.ToolFunctionParameters{
							Type:     "object",
							Required: []string{"city"},
							Properties: map[string]api.ToolProperty{
								"city": {Type: api.PropertyType{"string"}, Description: "The city name"},
							},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>get_weather</name>\n" +
				"<description>Get the current weather</description>\n" +
				"<parameters>\n" +
				"<parameter>\n<name>city</name>\n<type>string</type>\n<description>The city name</description>\n</parameter>\n" +
				"<required>[\"city\"]</required>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nWhat's the weather in Paris?<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "tool call with response",
			msgs: []api.Message{
				{Role: "user", Content: "What's the weather in Paris?"},
				{
					Role: "assistant",
					ToolCalls: []api.ToolCall{
						{
							Function: api.ToolCallFunction{
								Name:      "get_weather",
								Arguments: map[string]any{"city": "Paris"},
							},
						},
					},
				},
				{Role: "tool", Content: "Sunny, 72F"},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name:        "get_weather",
						Description: "Get the current weather",
						Parameters: api.ToolFunctionParameters{
							Type:     "object",
							Required: []string{"city"},
							Properties: map[string]api.ToolProperty{
								"city": {Type: api.PropertyType{"string"}, Description: "The city name"},
							},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>get_weather</name>\n" +
				"<description>Get the current weather</description>\n" +
				"<parameters>\n" +
				"<parameter>\n<name>city</name>\n<type>string</type>\n<description>The city name</description>\n</parameter>\n" +
				"<required>[\"city\"]</required>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nWhat's the weather in Paris?<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>\n" +
				"<tool_call>\n<function=get_weather>\n<parameter=city>\nParis\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\nSunny, 72F\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "assistant with content and tool call",
			msgs: []api.Message{
				{Role: "user", Content: "What's the weather?"},
				{
					Role:    "assistant",
					Content: "Let me check that for you.",
					ToolCalls: []api.ToolCall{
						{
							Function: api.ToolCallFunction{
								Name:      "get_weather",
								Arguments: map[string]any{"city": "Paris"},
							},
						},
					},
				},
				{Role: "tool", Content: "Sunny"},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "get_weather",
						Parameters: api.ToolFunctionParameters{
							Type: "object",
							Properties: map[string]api.ToolProperty{
								"city": {Type: api.PropertyType{"string"}},
							},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>get_weather</name>\n" +
				"<parameters>\n" +
				"<parameter>\n<name>city</name>\n<type>string</type>\n</parameter>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nWhat's the weather?<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>Let me check that for you.\n" +
				"<tool_call>\n<function=get_weather>\n<parameter=city>\nParis\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\nSunny\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "thinking in history is truncated",
			msgs: []api.Message{
				{Role: "user", Content: "Hi"},
				{Role: "assistant", Content: "Hello!", Thinking: "Let me think about this..."},
				{Role: "user", Content: "How are you?"},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nHi<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>Hello!<|im_end|>\n" +
				"<|im_start|>user\nHow are you?<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "parallel tool calls",
			msgs: []api.Message{
				{Role: "user", Content: "Weather in Paris and London?"},
				{
					Role: "assistant",
					ToolCalls: []api.ToolCall{
						{
							Function: api.ToolCallFunction{
								Name:      "get_weather",
								Arguments: map[string]any{"city": "Paris"},
							},
						},
						{
							Function: api.ToolCallFunction{
								Name:      "get_weather",
								Arguments: map[string]any{"city": "London"},
							},
						},
					},
				},
				{Role: "tool", Content: "Sunny"},
				{Role: "tool", Content: "Rainy"},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "get_weather",
						Parameters: api.ToolFunctionParameters{
							Type: "object",
							Properties: map[string]api.ToolProperty{
								"city": {Type: api.PropertyType{"string"}},
							},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>get_weather</name>\n" +
				"<parameters>\n" +
				"<parameter>\n<name>city</name>\n<type>string</type>\n</parameter>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nWeather in Paris and London?<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>\n" +
				"<tool_call>\n<function=get_weather>\n<parameter=city>\nParis\n</parameter>\n</function>\n</tool_call>\n" +
				"<tool_call>\n<function=get_weather>\n<parameter=city>\nLondon\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\nSunny\n</tool_response>\n<tool_response>\nRainy\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "thinking disabled even when model supports it",
			msgs: []api.Message{
				{Role: "user", Content: "Hello!"},
			},
			isThinking: true, // model supports thinking
			thinkValue: nil,  // but user didn't request it
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nHello!<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>",
		},
		{
			name: "complex message history with thinking, tools, tool calls, tool results and content",
			msgs: []api.Message{
				{Role: "user", Content: "What's the weather in Paris and London? Also, what's 2+2?"},
				{Role: "assistant", Content: "", Thinking: "I need to check the weather for both cities and calculate 2+2. Let me start with the weather calls.", ToolCalls: []api.ToolCall{
					{Function: api.ToolCallFunction{Name: "get_weather", Arguments: api.ToolCallFunctionArguments{"city": "Paris"}}},
					{Function: api.ToolCallFunction{Name: "get_weather", Arguments: api.ToolCallFunctionArguments{"city": "London"}}},
				}},
				{Role: "tool", Content: "Sunny, 22°C", ToolCallID: "call1"},
				{Role: "tool", Content: "Rainy, 15°C", ToolCallID: "call2"},
				{Role: "assistant", Content: "", Thinking: "Now I have the weather data. Let me calculate 2+2.", ToolCalls: []api.ToolCall{
					{Function: api.ToolCallFunction{Name: "calculate", Arguments: api.ToolCallFunctionArguments{"expression": "2+2"}}},
				}},
				{Role: "tool", Content: "4", ToolCallID: "call3"},
				{Role: "assistant", Content: "Based on the weather data, Paris is sunny at 22°C and London is rainy at 15°C. Also, 2+2 equals 4.", Thinking: "Perfect! I have all the information needed to provide a complete answer."},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "get_weather",
						Parameters: api.ToolFunctionParameters{
							Type: "object",
							Properties: map[string]api.ToolProperty{
								"city": {Type: api.PropertyType{"string"}},
							},
						},
					},
				},
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "calculate",
						Parameters: api.ToolFunctionParameters{
							Type: "object",
							Properties: map[string]api.ToolProperty{
								"expression": {Type: api.PropertyType{"string"}},
							},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>get_weather</name>\n" +
				"<parameters>\n" +
				"<parameter>\n<name>city</name>\n<type>string</type>\n</parameter>\n" +
				"</parameters>\n</function>\n" +
				"<function>\n<name>calculate</name>\n" +
				"<parameters>\n" +
				"<parameter>\n<name>expression</name>\n<type>string</type>\n</parameter>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nWhat's the weather in Paris and London? Also, what's 2+2?<|im_end|>\n" +
				"<|im_start|>assistant\n" +
				"<think>\nI need to check the weather for both cities and calculate 2+2. Let me start with the weather calls.\n</think>\n" +
				"<tool_call>\n<function=get_weather>\n<parameter=city>\nParis\n</parameter>\n</function>\n</tool_call>\n" +
				"<tool_call>\n<function=get_weather>\n<parameter=city>\nLondon\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\nSunny, 22°C\n</tool_response>\n<tool_response>\nRainy, 15°C\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n" +
				"<think>\nNow I have the weather data. Let me calculate 2+2.\n</think>\n" +
				"<tool_call>\n<function=calculate>\n<parameter=expression>\n2+2\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\n4\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n" +
				"<think>\nPerfect! I have all the information needed to provide a complete answer.\n</think>\n" +
				"Based on the weather data, Paris is sunny at 22°C and London is rainy at 15°C. Also, 2+2 equals 4.<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name:       "empty messages list",
			msgs:       []api.Message{},
			isThinking: false,
			expected:   "<|im_start|>system\n<|im_end|>\n<|im_start|>assistant\n<think></think>",
		},
		{
			name: "tool result with JSON content",
			msgs: []api.Message{
				{Role: "user", Content: "Get user info"},
				{
					Role: "assistant",
					ToolCalls: []api.ToolCall{
						{Function: api.ToolCallFunction{Name: "get_user", Arguments: map[string]any{"id": "123"}}},
					},
				},
				{Role: "tool", Content: `{"name": "John", "age": 30, "active": true}`},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "get_user",
						Parameters: api.ToolFunctionParameters{
							Type:       "object",
							Properties: map[string]api.ToolProperty{"id": {Type: api.PropertyType{"string"}}},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>get_user</name>\n<parameters>\n" +
				"<parameter>\n<name>id</name>\n<type>string</type>\n</parameter>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nGet user info<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>\n" +
				"<tool_call>\n<function=get_user>\n<parameter=id>\n123\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\n{\"name\": \"John\", \"age\": 30, \"active\": true}\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "assistant message with only thinking no content",
			msgs: []api.Message{
				{Role: "user", Content: "Think about this"},
				{Role: "assistant", Thinking: "Deep thoughts here...", Content: ""},
				{Role: "user", Content: "What did you think?"},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nThink about this<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think><|im_end|>\n" +
				"<|im_start|>user\nWhat did you think?<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "tool call with complex nested argument",
			msgs: []api.Message{
				{Role: "user", Content: "Create data"},
				{
					Role: "assistant",
					ToolCalls: []api.ToolCall{
						{Function: api.ToolCallFunction{
							Name: "create",
							Arguments: map[string]any{
								"data": map[string]any{"nested": "value", "count": 42},
							},
						}},
					},
				},
				{Role: "tool", Content: "Created"},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "create",
						Parameters: api.ToolFunctionParameters{
							Type:       "object",
							Properties: map[string]api.ToolProperty{"data": {Type: api.PropertyType{"object"}}},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>create</name>\n<parameters>\n" +
				"<parameter>\n<name>data</name>\n<type>object</type>\n</parameter>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nCreate data<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>\n" +
				"<tool_call>\n<function=create>\n<parameter=data>\n{\"count\":42,\"nested\":\"value\"}\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\nCreated\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "content explaining the format itself",
			msgs: []api.Message{
				{Role: "user", Content: "How do I format a tool call?"},
				{Role: "assistant", Content: "To call a tool, use <tool_call> tags with <function=name> inside."},
				{Role: "user", Content: "Thanks!"},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n<|im_end|>\n" +
				"<|im_start|>user\nHow do I format a tool call?<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>To call a tool, use <tool_call> tags with <function=name> inside.<|im_end|>\n" +
				"<|im_start|>user\nThanks!<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
		{
			name: "unicode in content and tool args",
			msgs: []api.Message{
				{Role: "user", Content: "Translate 你好"},
				{
					Role: "assistant",
					ToolCalls: []api.ToolCall{
						{Function: api.ToolCallFunction{Name: "translate", Arguments: map[string]any{"text": "你好"}}},
					},
				},
				{Role: "tool", Content: "Hello"},
			},
			tools: []api.Tool{
				{
					Type: "function",
					Function: api.ToolFunction{
						Name: "translate",
						Parameters: api.ToolFunctionParameters{
							Type: "object",
							Properties: map[string]api.ToolProperty{
								"text": {Type: api.PropertyType{"string"}},
							},
						},
					},
				},
			},
			isThinking: true,
			thinkValue: &api.ThinkValue{Value: true},
			expected: "<|im_start|>system\n" +
				"# Tools\n\nYou have access to the following functions:\n\n<tools>\n" +
				"<function>\n<name>translate</name>\n<parameters>\n" +
				"<parameter>\n<name>text</name>\n<type>string</type>\n</parameter>\n" +
				"</parameters>\n</function>\n</tools>\n\n" +
				"If you choose to call a function ONLY reply in the following format with NO suffix:\n\n" +
				"<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n" +
				"<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n" +
				"</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n" +
				"- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n" +
				"- Required parameters MUST be specified\n" +
				"- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n" +
				"- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n" +
				"</IMPORTANT><|im_end|>\n" +
				"<|im_start|>user\nTranslate 你好<|im_end|>\n" +
				"<|im_start|>assistant\n<think></think>\n" +
				"<tool_call>\n<function=translate>\n<parameter=text>\n你好\n</parameter>\n</function>\n</tool_call>\n<|im_end|>\n" +
				"<|im_start|>user\n<tool_response>\nHello\n</tool_response>\n<|im_end|>\n" +
				"<|im_start|>assistant\n<think>\n",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			renderer := &Nemotron3NanoRenderer{IsThinking: tt.isThinking}
			rendered, err := renderer.Render(tt.msgs, tt.tools, tt.thinkValue)
			if err != nil {
				t.Fatal(err)
			}
			if diff := cmp.Diff(rendered, tt.expected); diff != "" {
				t.Errorf("mismatch (-got +want):\n%s", diff)
			}
		})
	}
}