Create Model
Create a new machine learning model in Google Vertex AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MODEL])
Train Model
Initiate the training process for a specified machine learning model.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRAIN_MODEL])
Deploy Model
Deploy a trained model to an endpoint for serving predictions.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEPLOY_MODEL])
Make Prediction
Use a deployed model to make predictions on new data.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MAKE_PREDICTION])
Create Dataset
Create a new dataset in Vertex AI for training or batch prediction.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DATASET])
Import Data
Import data into a Vertex AI dataset from various sources.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_DATA])
Export Data
Export data from a Vertex AI dataset to various destinations.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_DATA])
Delete Model
Remove a specific model from Vertex AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_MODEL])
Update Model
Update the properties or metadata of an existing model.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_MODEL])
List Models
Retrieve a list of all models in the Vertex AI project.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LIST_MODELS])
Get Model Details
Fetch detailed information about a specific model.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GET_MODEL_DETAILS])
Create Endpoint
Create a new endpoint for model deployment in Vertex AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ENDPOINT])
Delete Endpoint
Remove a specific endpoint from Vertex AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_ENDPOINT])
Create Pipeline
Create a new ML pipeline for automating workflows in Vertex AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PIPELINE])
Run Pipeline
Execute a predefined ML pipeline in Vertex AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RUN_PIPELINE])
Create Hyperparameter Tuning Job
Initiate a hyperparameter tuning job to optimize model performance.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_HP_TUNING_JOB])
Create Batch Prediction Job
Start a batch prediction job using a deployed model.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BATCH_PREDICTION_JOB])
Create Feature Store
Create a new feature store for managing and serving ML features.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_FEATURE_STORE])
Import Features
Import features into a Vertex AI feature store.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_FEATURES])
Create AutoML Training Job
Initiate an AutoML training job for automated model creation.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_AUTOML_JOB])
Model Training Completed
Triggered when a model training job is completed.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_TRAINING_COMPLETED])
Model Deployment Completed
Triggered when a model is successfully deployed to an endpoint.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_DEPLOYMENT_COMPLETED])
Batch Prediction Job Completed
Triggered when a batch prediction job finishes processing.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BATCH_PREDICTION_COMPLETED])
Dataset Import Completed
Triggered when data import into a dataset is finished.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATASET_IMPORT_COMPLETED])
Pipeline Execution Completed
Triggered when an ML pipeline execution is completed.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PIPELINE_EXECUTION_COMPLETED])
Hyperparameter Tuning Completed
Triggered when a hyperparameter tuning job is finished.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HP_TUNING_COMPLETED])
AutoML Job Completed
Triggered when an AutoML training job is completed.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUTOML_JOB_COMPLETED])
Feature Store Update Completed
Triggered when features in a feature store are successfully updated.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FEATURE_STORE_UPDATE_COMPLETED])
Model Version Created
Triggered when a new version of a model is created.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_VERSION_CREATED])