Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

fix: empty agent transcript #1148

wants to merge 3 commits into from

Conversation

jayeshp19
Copy link
Collaborator

@jayeshp19 jayeshp19 commented Nov 28, 2024

This PR fixes the bug where a message was being added to the chat context even when msg.content was empty.

image
It's the same speech id which has tool calls with no content from model's response
image

Copy link

changeset-bot bot commented Nov 28, 2024

🦋 Changeset detected

Latest commit: 146820f

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
livekit-agents Patch

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

@jayeshp19 jayeshp19 marked this pull request as ready for review November 28, 2024 15:07
@@ -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:
Copy link
Member

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?

Copy link
Collaborator Author

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:
Copy link
Member

@theomonnom theomonnom Nov 28, 2024

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

Copy link
Collaborator Author

@jayeshp19 jayeshp19 Nov 28, 2024

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?

Copy link
Collaborator Author

@jayeshp19 jayeshp19 Nov 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the same speech id which has tool calls with empty content from model's response, do we need to mark it at committed?
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants