Rate Limiting
Python
from nitrostack import rate_limit, tool
@tool(name="search", description="...", input_schema=SearchInput)
@rate_limit(max=100, window=60)
async def search(self, input: SearchInput, context):
...
max is the request cap; window is seconds.