llm_condition
autogen.agentchat.group.llm_condition.LLMCondition
LLMCondition
Protocol for conditions evaluated by an LLM.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError
][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.self
is explicitly positional-only to allow self
as a field name.
Name | Description |
---|---|
**data | Type: Any |
Class Attributes
model_config
Instance Methods
get_prompt
Get the prompt text for LLM evaluation.
Name | Description |
---|---|
agent | The agent evaluating the condition Type: ConversableAgent |
messages | The conversation history Type: list[dict[str, typing.Any]] |
Type | Description |
---|---|
str | The prompt text to be evaluated by the LLM |