Skip to content

Commit 1975757

Browse files
committed
R03
1 parent 50629ed commit 1975757

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

agentnova/examples/07_logical_deduction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def run_tests(model: str, backend, debug: bool = False, use_mf_sys: bool = False
275275
expected = test["expected"]
276276
check_type = test["type"]
277277

278-
print(f"\n📋 [{category}] {prompt[:55]}...")
278+
print(f"\n📋 [{category}] {prompt}...")
279279

280280
# Create fresh agent for each test (isolates memory)
281281
# If use_mf_sys=True, don't pass custom system_prompt (use model's Modelfile)
@@ -307,7 +307,7 @@ def run_tests(model: str, backend, debug: bool = False, use_mf_sys: bool = False
307307
results["passed"] += int(passed)
308308

309309
status = "✅" if passed else "❌"
310-
print(f" {status} Expected: {expected} | Got: {response[:50]}")
310+
print(f" {status} Expected: {expected} | Got: {response}")
311311
print(f" {elapsed:.1f}s")
312312

313313
return results

agentnova/examples/08_reading_comprehension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def run_tests(model: str, backend, debug: bool = False, use_mf_sys: bool = False
336336
expected = test["expected"]
337337
check_type = test["type"]
338338

339-
print(f"\n📋 [{category}] {prompt[:50]}...")
339+
print(f"\n📋 [{category}] {prompt}...")
340340

341341
# Create fresh agent for each test (isolates memory)
342342
# If use_mf_sys=True, don't pass custom system_prompt (use model's Modelfile)
@@ -368,7 +368,7 @@ def run_tests(model: str, backend, debug: bool = False, use_mf_sys: bool = False
368368
results["passed"] += int(passed)
369369

370370
status = "✅" if passed else "❌"
371-
print(f" {status} Expected: {expected} | Got: {response[:50]}")
371+
print(f" {status} Expected: {expected} | Got: {response}")
372372
print(f" {elapsed:.1f}s")
373373

374374
return results

0 commit comments

Comments
 (0)