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