Skip to content

Llm output

LLMOutput

Bases: BaseModel

The basic class for llm output.

Source code in agentuniverse/llm/llm_output.py
Python
class 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.