llmOS-Agent / src /tools.py
tech-envision
Add database support and persist chat history
bedb8e2
raw
history blame
327 Bytes
from __future__ import annotations
__all__ = ["add_two_numbers"]
def add_two_numbers(a: int, b: int) -> int: # noqa: D401
"""Add two numbers together.
Args:
a (int): First number to add.
b (int): Second number to add.
Returns:
int: The sum of the two numbers.
"""
return a + b