Skip to content

Instantly share code, notes, and snippets.

View agenwatch's full-sized avatar

Agenwatch agenwatch

  • Agenwatch
View GitHub Profile
@agenwatch
agenwatch / agenwatch_basic_example.py
Last active January 13, 2026 20:47
Minimal AgenWatch example: runtime budget enforcement
import os
from agenwatch import Agent, tool
from agenwatch.providers import OpenAIProvider
@tool("Echo input text")
def echo(**kwargs) -> dict:
return {"echo": kwargs.get("text", "")}
agent = Agent(
tools=[echo],