mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-19 21:33:31 -04:00
11 lines
218 B
Python
11 lines
218 B
Python
"""Interface for tools."""
|
|
from typing import Callable, NamedTuple, Optional
|
|
|
|
|
|
class Tool(NamedTuple):
|
|
"""Interface for tools."""
|
|
|
|
name: str
|
|
func: Callable[[str], str]
|
|
description: Optional[str] = None
|