Bases: BaseModel
The basic class for llm output.
Source code in agentuniverse/llm/llm_output.py
Pythonclass LLMOutput(BaseModel):
"""The basic class for llm output."""
"""The text of the llm output."""
text: str
"""The raw data of the llm output."""
raw: Any
text: str
instance-attribute
The raw data of the llm output.