deploy_modal_app
Deploy a Modal application by providing the absolute path, enabling AI agents to run serverless cloud functions. Returns deployment results or raises an exception if errors occur.
Instructions
Deploy a Modal application using the provided parameters.
Args:
absolute_path_to_app: The absolute path to the Modal application to deploy.
Returns:
A dictionary containing deployment results.
Raises:
Exception: If deployment fails for any reason.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
absolute_path_to_app | Yes |
Input Schema (JSON Schema)
{
"properties": {
"absolute_path_to_app": {
"title": "Absolute Path To App",
"type": "string"
}
},
"required": [
"absolute_path_to_app"
],
"title": "deploy_modal_appArguments",
"type": "object"
}