remove additional reflexion support

This commit is contained in:
Adam Wilson
2025-08-16 19:26:12 -06:00
parent 7a510f03fa
commit d5beccb774
2 changed files with 1 additions and 13 deletions
@@ -20,11 +20,6 @@ class AbstractTextGenerationCompletionService(abc.ABC):
"""Enable RAG context security guidelines"""
raise NotImplementedError
@abc.abstractmethod
def with_reflexion_guardrails(self) -> 'AbstractTextGenerationCompletionService':
"""Apply security guardrails using the reflexion technique"""
raise NotImplementedError
@abc.abstractmethod
def is_chain_of_thought_enabled(self) -> bool:
raise NotImplementedError
@@ -33,10 +28,6 @@ class AbstractTextGenerationCompletionService(abc.ABC):
def is_rag_context_enabled(self) -> bool:
raise NotImplementedError
@abc.abstractmethod
def is_reflexion_enabled(self) -> bool:
raise NotImplementedError
@abc.abstractmethod
def invoke(self, user_prompt: str) -> AbstractTextGenerationCompletionResult:
raise NotImplementedError