Advanced reasoning and curation proxy (§13, §17–§19).
Exposes the context curator, feedback loop, meta-learning engine, source grounding engine, and cross-window validator.
Source code in crp/sdk/proxies_more.py
| class _AdvancedProxy:
"""Advanced reasoning and curation proxy (§13, §17–§19).
Exposes the context curator, feedback loop, meta-learning engine, source
grounding engine, and cross-window validator.
"""
def __init__(self, orchestrator: Any) -> None:
self._orchestrator = orchestrator
def curator(self) -> Any:
"""Return a fresh ``LLMContextCurator``.
Returns:
LLMContextCurator instance.
"""
from crp.advanced.curator import LLMContextCurator
return LLMContextCurator()
def feedback(self) -> Any:
"""Return a fresh ``FeedbackLoop``.
Returns:
FeedbackLoop instance.
"""
from crp.advanced.feedback import FeedbackLoop
return FeedbackLoop()
def meta_learning(self) -> Any:
"""Return a fresh ``MetaLearningEngine``.
Returns:
MetaLearningEngine instance.
"""
from crp.advanced.meta_learning import MetaLearningEngine
return MetaLearningEngine()
def source_grounding(self) -> Any:
"""Return a fresh ``SourceGroundingEngine``.
Returns:
SourceGroundingEngine instance.
"""
from crp.advanced.source_grounding import SourceGroundingEngine
return SourceGroundingEngine()
def cross_window_validator(self) -> Any:
"""Return a fresh ``CrossWindowValidator``.
Returns:
CrossWindowValidator instance.
"""
from crp.advanced.cross_window import CrossWindowValidator
return CrossWindowValidator()
|
curator()
Return a fresh LLMContextCurator.
Returns:
| Type | Description |
Any | LLMContextCurator instance. |
Source code in crp/sdk/proxies_more.py
| def curator(self) -> Any:
"""Return a fresh ``LLMContextCurator``.
Returns:
LLMContextCurator instance.
"""
from crp.advanced.curator import LLMContextCurator
return LLMContextCurator()
|
feedback()
Return a fresh FeedbackLoop.
Returns:
Source code in crp/sdk/proxies_more.py
| def feedback(self) -> Any:
"""Return a fresh ``FeedbackLoop``.
Returns:
FeedbackLoop instance.
"""
from crp.advanced.feedback import FeedbackLoop
return FeedbackLoop()
|
Return a fresh MetaLearningEngine.
Returns:
| Type | Description |
Any | MetaLearningEngine instance. |
Source code in crp/sdk/proxies_more.py
| def meta_learning(self) -> Any:
"""Return a fresh ``MetaLearningEngine``.
Returns:
MetaLearningEngine instance.
"""
from crp.advanced.meta_learning import MetaLearningEngine
return MetaLearningEngine()
|
source_grounding()
Return a fresh SourceGroundingEngine.
Returns:
| Type | Description |
Any | SourceGroundingEngine instance. |
Source code in crp/sdk/proxies_more.py
| def source_grounding(self) -> Any:
"""Return a fresh ``SourceGroundingEngine``.
Returns:
SourceGroundingEngine instance.
"""
from crp.advanced.source_grounding import SourceGroundingEngine
return SourceGroundingEngine()
|
cross_window_validator()
Return a fresh CrossWindowValidator.
Returns:
| Type | Description |
Any | CrossWindowValidator instance. |
Source code in crp/sdk/proxies_more.py
| def cross_window_validator(self) -> Any:
"""Return a fresh ``CrossWindowValidator``.
Returns:
CrossWindowValidator instance.
"""
from crp.advanced.cross_window import CrossWindowValidator
return CrossWindowValidator()
|