new-1 / agent /tools /types.py
eliason1's picture
Upload 100 files
fed4f1f verified
"""
Types for Hugging Face tools
Ported from: hf-mcp-server/packages/mcp/src/types/
"""
from typing import TypedDict
class ToolResult(TypedDict, total=False):
"""Result returned by HF tool operations"""
formatted: str
totalResults: int
resultsShared: int
isError: bool