sample_tool.py 167 B

1234567
  1. from agency_swarm import function_tool
  2. @function_tool
  3. def sample_tool(text: str) -> str:
  4. """Echo tool that returns the input text."""
  5. return f"Echo: {text}"