@link-assistant/agent 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/session/prompt.ts +1 -1
package/package.json
CHANGED
package/src/session/prompt.ts
CHANGED
|
@@ -704,7 +704,7 @@ export namespace SessionPrompt {
|
|
|
704
704
|
// When --system-message is provided, use it exclusively without any
|
|
705
705
|
// additional context (no environment, no custom instructions, no header).
|
|
706
706
|
// This is critical for models with low token limits (e.g., qwen3-32b with 6K TPM).
|
|
707
|
-
if (input.system) {
|
|
707
|
+
if (input.system !== undefined) {
|
|
708
708
|
return [input.system];
|
|
709
709
|
}
|
|
710
710
|
|