mirror of
https://github.com/langchain-ai/example-tool-server.git
synced 2026-06-30 22:17:55 -04:00
8 lines
103 B
Python
8 lines
103 B
Python
from langchain_core.tools import tool
|
|
|
|
@tool()
|
|
async def echo(msg: str) -> str:
|
|
return msg + "!"
|
|
|
|
|