This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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], |