Create New Model
Create a new machine learning model on Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_NEW_MODEL])
Upload Dataset
Upload a new dataset to Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPLOAD_DATASET])
Fine Tune Model
Fine-tune an existing model with custom data
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FINE_TUNE_MODEL])
Deploy Model
Deploy a model to Hugging Face's model hosting service
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEPLOY_MODEL])
Run Inference
Perform inference using a deployed model
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RUN_INFERENCE])
Update Model
Update an existing model with new parameters or architecture
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_MODEL])
Delete Model
Remove a model from Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_MODEL])
Share Model
Share a model with the Hugging Face community
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_MODEL])
Create Space
Create a new Hugging Face Space for model demos
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SPACE])
Update Space
Modify an existing Hugging Face Space
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SPACE])
Delete Space
Remove a Hugging Face Space
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_SPACE])
Create Organization
Create a new organization on Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ORGANIZATION])
Invite Member
Invite a new member to a Hugging Face organization
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVITE_MEMBER])
Remove Member
Remove a member from a Hugging Face organization
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_MEMBER])
Create Dataset Version
Create a new version of an existing dataset
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DATASET_VERSION])
New Model Version
Triggered when a new version of a model is published
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_MODEL_VERSION])
Model Download Milestone
Triggered when a model reaches a download milestone
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_DOWNLOAD_MILESTONE])
New Dataset Version
Triggered when a new version of a dataset is published
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DATASET_VERSION])
Space Update
Triggered when a Hugging Face Space is updated
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPACE_UPDATE])
New Organization Member
Triggered when a new member joins an organization
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ORGANIZATION_MEMBER])
Model Like
Triggered when a model receives a like
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_LIKE])
Dataset Like
Triggered when a dataset receives a like
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATASET_LIKE])
New Follower
Triggered when a user gains a new follower
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_FOLLOWER])
Model Featured
Triggered when a model is featured on Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_FEATURED])
Dataset Featured
Triggered when a dataset is featured on Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATASET_FEATURED])
Space Featured
Triggered when a Space is featured on Hugging Face
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPACE_FEATURED])
Model Training Complete
Triggered when a model training job is completed
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_TRAINING_COMPLETE])
Dataset Processing Complete
Triggered when dataset processing is completed
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATASET_PROCESSING_COMPLETE])