Configuration for evolution trace logging
| 360 | |
| 361 | @dataclass |
| 362 | class EvolutionTraceConfig: |
| 363 | """Configuration for evolution trace logging""" |
| 364 | |
| 365 | enabled: bool = False |
| 366 | format: str = "jsonl" |
| 367 | include_code: bool = False |
| 368 | include_prompts: bool = True |
| 369 | output_path: Optional[str] = None |
| 370 | buffer_size: int = 10 |
| 371 | compress: bool = False |
| 372 | |
| 373 | |
| 374 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected