-
Notifications
You must be signed in to change notification settings - Fork 434
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: empty agent transcript #1148
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 146820f The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@@ -883,24 +883,25 @@ async def _execute_function_calls() -> None: | |||
if interrupted: | |||
collected_text += "..." | |||
|
|||
msg = ChatMessage.create(text=collected_text, role="assistant") | |||
self._chat_ctx.messages.append(msg) | |||
if collected_text: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this would skip speech_handle.mark_speech_committed()
, do we want to mark it as committed before skipping the other operations?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
model's response contains empty content when it responds with a tool call, should we still mark it as committed? because after executing function model will respond with string that will be marked as committed
@@ -883,24 +883,25 @@ async def _execute_function_calls() -> None: | |||
if interrupted: | |||
collected_text += "..." | |||
|
|||
msg = ChatMessage.create(text=collected_text, role="assistant") | |||
self._chat_ctx.messages.append(msg) | |||
if collected_text: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When can this happen? I'm more worried about the cause than fixing the scenario where it is indeed empty
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This happens when agent finish speaking tool call's response. we get an extra empty transcript. screenshot
Can there be a possiblity when llm response is just empty?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR fixes the bug where a message was being added to the chat context even when
msg.content
was empty.It's the same speech id which has tool calls with no content from model's response