diff --git a/python/src/multi_agent_orchestrator/agents/bedrock_llm_agent.py b/python/src/multi_agent_orchestrator/agents/bedrock_llm_agent.py index a5b8369..8a5fe83 100644 --- a/python/src/multi_agent_orchestrator/agents/bedrock_llm_agent.py +++ b/python/src/multi_agent_orchestrator/agents/bedrock_llm_agent.py @@ -90,6 +90,9 @@ def __init__(self, options: BedrockLLMAgentOptions): options.custom_system_prompt.get('variables') ) + def is_streaming_enabled(self) -> bool: + return self.streaming is True + async def process_request( self, input_text: str,