LambdaWrapper#
- class langchain_community.utilities.awslambda.LambdaWrapper[source]#
Bases:
BaseModel
Wrapper for AWS Lambda SDK. To use, you should have the
boto3
package installed and a lambda functions built from the AWS Console or CLI. Set up your AWS credentials withaws configure
Example
pip install boto3 aws configure
Create a new model by parsing and validating input data from keyword arguments.
Raises ValidationError if the input data cannot be parsed to form a valid model.
- param awslambda_tool_description: str | None = None#
If passing to an agent as a tool, the description
- param awslambda_tool_name: str | None = None#
If passing to an agent as a tool, the tool name
- param function_name: str | None = None#
The name of your lambda function
- param lambda_client: Any = None#
The configured boto3 client