File size: 294 Bytes
4d8a789
 
 
 
 
2ca459e
 
4d8a789
 
 
 
2ca459e
4d8a789
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
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