Spaces:
Sleeping
Sleeping
| """FlakeForge V3 Agent — unified agent architecture.""" | |
| from .unified_agent import ( | |
| UnifiedFlakeForgeAgent, | |
| build_unified_prompt, | |
| extract_think, | |
| extract_patch, | |
| extract_category_from_think, | |
| extract_confidence_from_think, | |
| infer_category_from_patch, | |
| ) | |
| from .observation_utils import build_observation_from_state, summarize_observation | |
| __all__ = [ | |
| "UnifiedFlakeForgeAgent", | |
| "build_unified_prompt", | |
| "extract_think", | |
| "extract_patch", | |
| "extract_category_from_think", | |
| "extract_confidence_from_think", | |
| "infer_category_from_patch", | |
| "build_observation_from_state", | |
| "summarize_observation", | |
| ] | |