Depreciation Calculator¶
Asset depreciation calculations for accounting and tax purposes.
Setup¶
from agno.agent import Agent
from enhancedtoolkits.calculators import DepreciationCalculatorTools
agent = Agent(
name="Accounting Assistant",
model="gpt-4",
tools=[DepreciationCalculatorTools()]
)
Available Functions¶
calculate_straight_line()
- Straight-line depreciationcalculate_declining_balance()
- Declining balance methodcalculate_sum_of_years()
- Sum-of-years-digits methodcalculate_units_of_production()
- Units of production method