Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cecli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from packaging import version

__version__ = "0.96.8.dev"
__version__ = "0.96.9.dev"
safe_version = __version__

try:
Expand Down
1 change: 1 addition & 0 deletions cecli/coders/base_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -2404,6 +2404,7 @@ async def process_tool_calls(self, tool_call_response):
ConversationManager.add_message(
message_dict=tool_response,
tag=MessageTag.CUR,
hash_key=(tool_response["tool_call_id"], str(time.monotonic_ns())),
)

return True
Expand Down
2 changes: 1 addition & 1 deletion cecli/helpers/conversation/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def add_file_list_reminder(cls, coder) -> None:
},
tag=MessageTag.REMINDER,
priority=275, # Between post_message blocks and final reminders
hash_key=("file_list_reminder",), # Unique hash_key to avoid conflicts
hash_key=("reminder", "file_list"), # Unique hash_key to avoid conflicts
mark_for_delete=0, # Lasts for exactly one turn
)

Expand Down
3 changes: 3 additions & 0 deletions cecli/helpers/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ def _process_thought_signature(container):
if "provider_specific_fields" not in container:
container["provider_specific_fields"] = {}

if not container["provider_specific_fields"]:
container["provider_specific_fields"] = {}

psf = container["provider_specific_fields"]

if "thought_signature" not in psf:
Expand Down
Loading