mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 17:47:06 +08:00
14 lines
211 B
Python
14 lines
211 B
Python
"""旧版 ``astrbot.core.agent.message`` 兼容入口。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class TextPart:
|
|
text: str
|
|
|
|
|
|
__all__ = ["TextPart"]
|