| 519 | try: |
| 520 | # Mock a tool object similar to what CrewAI would provide |
| 521 | class MockTool: |
| 522 | def __init__(self): |
| 523 | self.name = "Test Tool" |
| 524 | self.description = "A test tool" |
| 525 | |
| 526 | tool = MockTool() |
| 527 | agentops.track_tool(tool, "Test Agent") |
no outgoing calls
searching dependent graphs…