From f63fff92ae5023306908d13128ab13b4e5e741d1 Mon Sep 17 00:00:00 2001 From: Raghotham Murthy Date: Wed, 10 Jul 2024 23:00:12 -0700 Subject: [PATCH] fix indentation --- source/api_definitions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/api_definitions.py b/source/api_definitions.py index 0f73cc8d3..37fd663b5 100644 --- a/source/api_definitions.py +++ b/source/api_definitions.py @@ -291,10 +291,10 @@ class SyntheticDataGenerationRequest: @json_schema_type @dataclass 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] - statistics: Optional[Dict[str, Any]] = None + synthetic_data: List[KScoredPromptGenerations] + statistics: Optional[Dict[str, Any]] = None class SyntheticDataGeneration(Protocol):