Spaces:
Sleeping
Sleeping
| """Configuration for recursive reflector.""" | |
| from dataclasses import dataclass | |
| from typing import Literal | |
| from ...core.recursive_agent import AgenticConfig | |
| class RecursiveConfig(AgenticConfig): | |
| """Configuration for the Recursive Reflector. | |
| Inherits all fields from :class:`AgenticConfig`. Overrides | |
| ``max_output_chars`` for larger trace outputs. | |
| """ | |
| max_output_chars: int = 50_000 | |
| cache_prompts: bool = True | |
| cache_ttl: Literal["5m", "1h"] = "5m" | |