Files
example-tool-server/app/server.py
T
Eugene Yurtsev b798bc7907 initial release
2025-03-06 12:46:42 -05:00

8 lines
103 B
Python

from langchain_core.tools import tool
@tool()
async def echo(msg: str) -> str:
return msg + "!"