Source code for python_agents.message

from typing import Any, TypedDict


[docs] class Message(TypedDict): role: str content: str tool_call_id: str = None name: str = None tool_calls: list[Any] = None