Wrap a event class with a type field to be used in a union type
This is needed for proper serialization and deserialization of events in a union type.
Source code in autogen/events/base_event.py
| @export_module("autogen.events")
def wrap_event(event_cls: type[BaseEvent]) -> type[BaseModel]:
"""Wrap a event class with a type field to be used in a union type
This is needed for proper serialization and deserialization of events in a union type.
Args:
event_cls (type[BaseEvent]): Event class to wrap
"""
global _event_classes
if not event_cls.__name__.endswith("Event"):
raise ValueError("Event class name must end with 'Event'")
type_name = camel2snake(event_cls.__name__)
type_name = type_name[: -len("_event")]
class WrapperBase(BaseModel):
# these types are generated dynamically so we need to disable the type checker
type: Literal[type_name] = type_name # type: ignore[valid-type]
content: event_cls # type: ignore[valid-type]
def __init__(self, *args: Any, **data: Any):
if set(data.keys()) == {"type", "content"} and "content" in data:
super().__init__(*args, **data)
else:
if "content" in data:
content = data.pop("content")
super().__init__(*args, content=event_cls(*args, **data, content=content), **data)
else:
super().__init__(content=event_cls(*args, **data), **data)
def print(self, f: Optional[Callable[..., Any]] = None) -> None:
self.content.print(f) # type: ignore[attr-defined]
wrapper_cls = create_model(event_cls.__name__, __base__=WrapperBase)
# Preserve the original class's docstring and other attributes
wrapper_cls.__doc__ = event_cls.__doc__
wrapper_cls.__module__ = event_cls.__module__
# Copy any other relevant attributes/metadata from the original class
if hasattr(event_cls, "__annotations__"):
wrapper_cls.__annotations__ = event_cls.__annotations__
_event_classes[type_name] = wrapper_cls
return wrapper_cls
|