Create Project
Create a new project in v7_go
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PROJECT])
Upload Image
Upload a new image to a project in v7_go
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPLOAD_IMAGE])
Start Annotation
Initiate the annotation process for an image or dataset
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.START_ANNOTATION])
Export Annotations
Export completed annotations from a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_ANNOTATIONS])
Invite Team Member
Invite a new team member to collaborate on a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVITE_TEAM_MEMBER])
Create Dataset
Create a new dataset within a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DATASET])
Assign Task
Assign an annotation task to a team member
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_TASK])
Set Annotation Guidelines
Define and set annotation guidelines for a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_ANNOTATION_GUIDELINES])
Generate Report
Generate a report on annotation progress and quality
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_REPORT])
Create Label
Create a new label for annotation in a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LABEL])
Update Project Settings
Modify the settings of an existing project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PROJECT_SETTINGS])
Merge Datasets
Combine multiple datasets into a single dataset
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MERGE_DATASETS])
Review Annotations
Initiate a review process for completed annotations
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REVIEW_ANNOTATIONS])
Train Model
Start training a machine learning model using annotated data
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRAIN_MODEL])
Deploy Model
Deploy a trained model for inference
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEPLOY_MODEL])
New Project Created
Triggered when a new project is created in v7_go
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PROJECT_CREATED])
Image Uploaded
Triggered when a new image is uploaded to a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMAGE_UPLOADED])
Annotation Completed
Triggered when an annotation task is completed
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ANNOTATION_COMPLETED])
Dataset Created
Triggered when a new dataset is created
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATASET_CREATED])
Team Member Joined
Triggered when a new team member joins a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TEAM_MEMBER_JOINED])
Annotation Guidelines Updated
Triggered when annotation guidelines are modified
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ANNOTATION_GUIDELINES_UPDATED])
Report Generated
Triggered when a new report is generated
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REPORT_GENERATED])
Model Training Started
Triggered when model training begins
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_TRAINING_STARTED])
Model Deployment Completed
Triggered when a model is successfully deployed
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MODEL_DEPLOYMENT_COMPLETED])
Annotation Review Requested
Triggered when an annotation is submitted for review
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ANNOTATION_REVIEW_REQUESTED])
Project Settings Changed
Triggered when project settings are modified
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROJECT_SETTINGS_CHANGED])
Dataset Merged
Triggered when datasets are successfully merged
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATASET_MERGED])
New Label Created
Triggered when a new label is created in a project
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LABEL_CREATED])
Task Assignment Completed
Triggered when a task is assigned to a team member
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_ASSIGNMENT_COMPLETED])
Export Completed
Triggered when an export of annotations is finished
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_COMPLETED])