Create Invoice
Generate a new invoice in Tally for a customer
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Record Payment
Record a payment received from a customer in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORD_PAYMENT])
Create Voucher
Create a new voucher entry in Tally for expenses or other transactions
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_VOUCHER])
Add Customer
Add a new customer to the Tally database
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_CUSTOMER])
Add Supplier
Add a new supplier to the Tally database
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_SUPPLIER])
Create Purchase Order
Generate a new purchase order in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PURCHASE_ORDER])
Update Stock Item
Update the quantity or details of a stock item in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_STOCK_ITEM])
Generate Financial Report
Create a financial report such as balance sheet or profit & loss statement
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_FINANCIAL_REPORT])
Create Journal Entry
Record a journal entry in Tally for accounting adjustments
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_JOURNAL_ENTRY])
Reconcile Bank Statement
Reconcile bank transactions with Tally entries
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECONCILE_BANK_STATEMENT])
Create Sales Order
Generate a new sales order in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SALES_ORDER])
Update Company Info
Update company information in Tally settings
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_COMPANY_INFO])
Create Payroll Entry
Record payroll transactions for employees in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PAYROLL_ENTRY])
Generate GST Report
Create a GST (Goods and Services Tax) report in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_GST_REPORT])
Update Exchange Rates
Update currency exchange rates in Tally for multi-currency transactions
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_EXCHANGE_RATES])
New Invoice Created
Triggered when a new invoice is created in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_CREATED])
Payment Received
Triggered when a payment is recorded in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAYMENT_RECEIVED])
Low Stock Alert
Triggered when stock levels fall below a specified threshold
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOW_STOCK_ALERT])
Overdue Invoice
Triggered when an invoice becomes overdue
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.OVERDUE_INVOICE])
New Customer Added
Triggered when a new customer is added to Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CUSTOMER_ADDED])
New Supplier Added
Triggered when a new supplier is added to Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SUPPLIER_ADDED])
Purchase Order Approved
Triggered when a purchase order is approved in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PURCHASE_ORDER_APPROVED])
Sales Order Fulfilled
Triggered when a sales order is marked as fulfilled
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SALES_ORDER_FULFILLED])
Bank Reconciliation Completed
Triggered when a bank reconciliation process is completed
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BANK_RECONCILIATION_COMPLETED])
Financial Year End
Triggered at the end of a financial year in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FINANCIAL_YEAR_END])
New Journal Entry Created
Triggered when a new journal entry is created in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_JOURNAL_ENTRY_CREATED])
GST Return Due
Triggered when a GST return is due for filing
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GST_RETURN_DUE])
Negative Cash Balance
Triggered when the cash balance becomes negative
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEGATIVE_CASH_BALANCE])
Budget Exceeded
Triggered when expenses exceed the set budget in any category
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BUDGET_EXCEEDED])
New Financial Year Started
Triggered when a new financial year begins in Tally
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_FINANCIAL_YEAR_STARTED])