Configuration for evolution trace logging
| 386 | |
| 387 | @dataclass |
| 388 | class EvolutionTraceConfig: |
| 389 | """Configuration for evolution trace logging""" |
| 390 | |
| 391 | enabled: bool = False |
| 392 | format: str = "jsonl" # Options: "jsonl", "json", "hdf5" |
| 393 | include_code: bool = False |
| 394 | include_prompts: bool = True |
| 395 | output_path: Optional[str] = None |
| 396 | buffer_size: int = 10 |
| 397 | compress: bool = False |
| 398 | |
| 399 | |
| 400 | @dataclass |
no outgoing calls