ml-agent / agent /tools /types.py
akseljoonas's picture
akseljoonas HF Staff
ported the hf jobs tool to python
2ca459e
raw
history blame
294 Bytes
"""
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