fix indentation

This commit is contained in:
Raghotham Murthy 2024-07-10 23:00:12 -07:00
parent d9367054df
commit f63fff92ae

View file

@ -291,10 +291,10 @@ class SyntheticDataGenerationRequest:
@json_schema_type @json_schema_type
@dataclass @dataclass
class SyntheticDataGenerationResponse: class SyntheticDataGenerationResponse:
"""Response from the synthetic data generation. Batch of (prompt, response, score) tuples that pass the threshold.""" """Response from the synthetic data generation. Batch of (prompt, response, score) tuples that pass the threshold."""
synthetic_data: List[KScoredPromptGenerations] synthetic_data: List[KScoredPromptGenerations]
statistics: Optional[Dict[str, Any]] = None statistics: Optional[Dict[str, Any]] = None
class SyntheticDataGeneration(Protocol): class SyntheticDataGeneration(Protocol):