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

Use structured output for speaker selection in SelectorGroupChat #5970

Open
1 task done
ekzhu opened this issue Mar 16, 2025 · 2 comments · May be fixed by #6010
Open
1 task done

Use structured output for speaker selection in SelectorGroupChat #5970

ekzhu opened this issue Mar 16, 2025 · 2 comments · May be fixed by #6010
Labels
proj-agentchat structured output Issues related to structured output and its usage
Milestone

Comments

@ekzhu
Copy link
Collaborator

ekzhu commented Mar 16, 2025

Confirmation

  • I confirm that I am a maintainer and so can use this template. If I am not, I understand this issue will be closed and I will be asked to use a different template.

Issue body

Use structured output for selecting next speaker allows for more robust speaker selection behaviour.

To use structured output, we need to first check the model info of the model client used. The default prompt cannot be used in this case. We probably need to add another built in prompt for this.

@ekzhu ekzhu added proj-agentchat structured output Issues related to structured output and its usage labels Mar 16, 2025
@ekzhu ekzhu added this to the 0.4.x-python milestone Mar 16, 2025
@Ethan0456
Copy link
Contributor

Ethan0456 commented Mar 18, 2025

Hi @ekzhu,

I’ve implemented a baseline solution for the issue and wanted to confirm if my approach looks correct. Below are some code snippets for reference. I’d really appreciate your feedback.

File: _selector_group_chat.py

from pydantic import BaseModel
from enum import Enum

[...]

async def _select_speaker(self, roles: str, participants: List[str], history: str, max_attempts: int) -> str:
     if self._model_client.model_info["structured_output"]:
            select_speaker_prompt = self._structured_output_selector_prompt.format(
                roles=roles, participants=str(participants), history=history
            )
        else:
            select_speaker_prompt = self._selector_prompt.format(
                roles=roles, participants=str(participants), history=history
            )

    [...]
    participants_enum_dict = {agent.upper(): agent for agent in participants}
    AgentName = Enum("AgentName", participants_enum_dict)
    
    class SpeakerSelectionFormat(BaseModel):
        agent_name: AgentName

    while num_attempts < max_attempts:
        num_attempts += 1
        if self._model_client.model_info["structured_output"]:
            response = await self._model_client.create(messages=select_speaker_messages,
                                                       extra_create_args={"response_format": SpeakerSelectionFormat})
            response_content = response.content if isinstance(response.content, str) else None
    
            if not response_content:
                raise ValueError("Response content is not a valid JSON string")  # and try again in loop
    
            speaker_selection_obj = SpeakerSelectionFormat(**json.loads(response_content))
            return speaker_selection_obj.agent_name.value
        else:
            response = await self._model_client.create(messages=select_speaker_messages)

I've also tested it without the structured selector prompt. However, we could adjust the prompt as shown above.

@ekzhu
Copy link
Collaborator Author

ekzhu commented Mar 18, 2025

With the most recent update #5933 we can now use

create_result = await model_client.create(..., json_output=SpeakerSelectionFormat)
assert isinstance(create_result.content, str)
selection = SpeakerSelectionFormat.model_validate_json(create_result.content)

Also, we need to check if structured_output key is there in model_info as it was introduced recently, and we need to work on backward compatibility. So, if the key isn't there, we should produce a warning to remind user to include the structured_output field to enable this.

I think this is a good start. Do we need to update the prompt? Perhaps to start we can stick with the default prompt for now.

Ethan0456 added a commit to Ethan0456/autogen that referenced this issue Mar 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
proj-agentchat structured output Issues related to structured output and its usage
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants