generated from langchain-ai/integration-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 213
Open
Labels
Description
Hello! I am creating and agent on AWS BedRock using LangChain and would like to enable User Input [figure] on the code. I checked the documentation and I couldn't find any information about how to enable user interaction for this scenario. It seems like this functionality may not currently be supported and could require development.
This is the code:
from langchain_aws.agents import BedrockAgentsRunnable
agent = BedrockAgentsRunnable.create_agent(
agent_name="risk_agent",
agent_resource_role_arn=agent_resource_role_arn,
foundation_model=foundational_model,
instruction=SYSTEM_INSTRUCTIONS,
tools=list_tools,
guardrail_configuration=None,
)
