Remove unused raw arg (#445)

This commit is contained in:
Albert Villanova del Moral 2025-01-31 12:00:10 +01:00 committed by GitHub
parent ebae61f5ba
commit 5f2147a17d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class ChatMessageToolCall:
type: str
@classmethod
def from_hf_api(cls, tool_call, raw) -> "ChatMessageToolCall":
def from_hf_api(cls, tool_call) -> "ChatMessageToolCall":
return cls(
function=ChatMessageToolCallDefinition.from_hf_api(tool_call.function),
id=tool_call.id,