Create Lead
Creates a new lead in the Real Geeks CRM system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LEAD])
Update Lead
Updates an existing lead's information in the CRM.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LEAD])
Add Property Listing
Adds a new property listing to the Real Geeks platform.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_PROPERTY_LISTING])
Update Property Listing
Updates an existing property listing's information.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PROPERTY_LISTING])
Schedule Showing
Schedules a property showing through the Real Geeks system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_SHOWING])
Change Lead Status
Changes the status of a lead in the CRM.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_LEAD_STATUS])
Create Task
Creates a new task in the Real Geeks task management system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Complete Task
Marks a task as completed in the system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.COMPLETE_TASK])
Add Note
Adds a new note to a lead or property record.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE])
Send Email Campaign
Initiates the sending of an email campaign through the Real Geeks platform.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL_CAMPAIGN])
Assign Lead
Assigns a lead to a specific agent or team member.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_LEAD])
Change Property Price
Changes the price of a listed property in the system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_PROPERTY_PRICE])
Add Team Member
Adds a new team member or agent to the Real Geeks account.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TEAM_MEMBER])
Add Lead Source
Adds a new lead source to the Real Geeks system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_LEAD_SOURCE])
Generate Property Report
Generates a detailed report for a specific property listing.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_PROPERTY_REPORT])
New Lead Created
Triggered when a new lead is added to the Real Geeks CRM system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_CREATED])
Lead Updated
Triggered when an existing lead's information is modified in the CRM.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_UPDATED])
Property Listing Added
Triggered when a new property listing is added to the Real Geeks platform.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROPERTY_LISTING_ADDED])
Property Listing Updated
Triggered when an existing property listing is modified.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROPERTY_LISTING_UPDATED])
New Website Inquiry
Triggered when a visitor submits an inquiry form on the Real Geeks website.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_WEBSITE_INQUIRY])
Scheduled Showing
Triggered when a property showing is scheduled through the system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULED_SHOWING])
Lead Status Changed
Triggered when a lead's status is updated (e.g., from 'New' to 'Contacted').
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_STATUS_CHANGED])
New Task Created
Triggered when a new task is created in the Real Geeks task management system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_CREATED])
Task Completed
Triggered when a task is marked as completed in the system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
New Note Added
Triggered when a new note is added to a lead or property record.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_ADDED])
Email Campaign Sent
Triggered when an email campaign is sent through the Real Geeks platform.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EMAIL_CAMPAIGN_SENT])
Lead Assignment
Triggered when a lead is assigned to a specific agent or team member.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_ASSIGNMENT])
Property Price Change
Triggered when the price of a listed property is changed.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROPERTY_PRICE_CHANGE])
New Team Member Added
Triggered when a new team member or agent is added to the Real Geeks account.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TEAM_MEMBER_ADDED])
Lead Source Added
Triggered when a new lead source is added to the system.
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_SOURCE_ADDED])