691f45a
1
2
3
4
5
6
7
8
9
10
from dataclasses import dataclass from services.results import GenerationResult @dataclass(slots=True) class TextGenerationResult(GenerationResult): """Result of a text generation call.""" text: str = ""