test: added test for core token buffer memory and model runtime (#32512)

Co-authored-by: rajatagarwal-oss <rajat.agarwal@infocusp.com>
This commit is contained in:
mahammadasim
2026-03-12 09:16:46 +05:30
committed by GitHub
parent 60fe5e7f00
commit e99628b76f
28 changed files with 6007 additions and 6 deletions

View File

@ -276,7 +276,4 @@ class ToolPromptMessage(PromptMessage):
:return: True if prompt message is empty, False otherwise
"""
if not super().is_empty() and not self.tool_call_id:
return False
return True
return super().is_empty() and not self.tool_call_id