Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
boto3
pip install openai boto3
from agno.agent import Agent from agno.tools.aws_lambda import AWSLambdaTools # 创建一个包含 AWSLambdaTool 的 Agent agent = Agent( tools=[AWSLambdaTools(region_name="us-east-1")], name="AWS Lambda Agent", show_tool_calls=True, ) # 示例 1:列出所有 Lambda 函数 agent.print_response("List all Lambda functions in our AWS account", markdown=True) # 示例 2:调用一个特定的 Lambda 函数 agent.print_response("Invoke the 'hello-world' Lambda function with an empty payload", markdown=True)
region_name
str
"us-east-1"
list_functions
invoke_function
function_name
payload