langchain.utilities.awslambda.LambdaWrapper¶
- class langchain.utilities.awslambda.LambdaWrapper(*, lambda_client: Any = None, function_name: Optional[str] = None, awslambda_tool_name: Optional[str] = None, awslambda_tool_description: Optional[str] = None)[source]¶
Bases:
BaseModelWrapper for AWS Lambda SDK. To use, you should have the
boto3package installed and a lambda functions built from the AWS Console or CLI. Set up your AWS credentials withaws configureExample
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: Optional[str] = None¶
If passing to an agent as a tool, the description
- param awslambda_tool_name: Optional[str] = None¶
If passing to an agent as a tool, the tool name
- param function_name: Optional[str] = None¶
The name of your lambda function
- param lambda_client: Any = None¶
The configured boto3 client
- run(query: str) str[source]¶
Invokes the lambda function and returns the result.
- Parameters
query – an input to passed to the lambda function as the
bodyof a JSON object.