← back to Exo
Only ignore message if actually empty (#1292)
59e991ce15389ca1cb8f7535b4d3c3de6187d9ce · 2026-01-26 19:33:23 +0000 · rltakashige
## Motivation
<!-- Why is this change needed? What problem does it solve? -->
<!-- If it fixes an open issue, please link to the issue here -->
## Changes
<!-- Describe what you changed in detail -->
## Why It Works
<!-- Explain why your approach solves the problem -->
## Test Plan
### Manual Testing
<!-- Hardware: (e.g., MacBook Pro M1 Max 32GB, Mac Mini M2 16GB,
connected via Thunderbolt 4) -->
<!-- What you did: -->
<!-- - -->
### Automated Testing
<!-- Describe changes to automated tests, or how existing tests cover
this change -->
<!-- - -->
Files touched
M src/exo/worker/engines/mlx/utils_mlx.py
Diff
commit 59e991ce15389ca1cb8f7535b4d3c3de6187d9ce
Author: rltakashige <rl.takashige@gmail.com>
Date: Mon Jan 26 19:33:23 2026 +0000
Only ignore message if actually empty (#1292)
## Motivation
<!-- Why is this change needed? What problem does it solve? -->
<!-- If it fixes an open issue, please link to the issue here -->
## Changes
<!-- Describe what you changed in detail -->
## Why It Works
<!-- Explain why your approach solves the problem -->
## Test Plan
### Manual Testing
<!-- Hardware: (e.g., MacBook Pro M1 Max 32GB, Mac Mini M2 16GB,
connected via Thunderbolt 4) -->
<!-- What you did: -->
<!-- - -->
### Automated Testing
<!-- Describe changes to automated tests, or how existing tests cover
this change -->
<!-- - -->
---
src/exo/worker/engines/mlx/utils_mlx.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/exo/worker/engines/mlx/utils_mlx.py b/src/exo/worker/engines/mlx/utils_mlx.py
index cb0e72b3..d4496780 100644
--- a/src/exo/worker/engines/mlx/utils_mlx.py
+++ b/src/exo/worker/engines/mlx/utils_mlx.py
@@ -405,7 +405,11 @@ def apply_chat_template(
continue
message.content = "\n".join(c.text for c in message.content).strip()
- if message.content is None and message.thinking is None:
+ if (
+ message.content is None
+ and message.thinking is None
+ and message.tool_calls is None
+ ):
continue
# Null values are not valid when applying templates in tokenizer
← ffba340e Ciaran/image quantization (#1272)
·
back to Exo
·
Fix kv prefix cache (#1262) cd8c01b7 →