from dataclasses import dataclass from services.results import GenerationResult @dataclass(slots=True) class TextGenerationResult(GenerationResult): """Result of a text generation call.""" text: str = ""