Skip to content

Commit 0072144

Browse files
fcenedesCopilot
andauthored
Update agent-memory-client/agent_memory_client/tool_schema.py
Co-authored-by: Copilot <[email protected]>
1 parent f83d7a9 commit 0072144

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

agent-memory-client/agent_memory_client/tool_schema.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,17 @@ class ToolSchema:
3434
def __init__(
3535
self,
3636
schema: dict[str, Any],
37-
format: Literal["openai", "anthropic"] = "openai",
37+
schema_format: Literal["openai", "anthropic"] = "openai",
3838
):
3939
"""
4040
Initialize a ToolSchema wrapper.
4141
4242
Args:
4343
schema: The raw schema dictionary
44-
format: The schema format ("openai" or "anthropic")
44+
schema_format: The schema format ("openai" or "anthropic")
4545
"""
4646
self._schema = schema
47-
self._format = format
47+
self._format = schema_format
4848

4949
@property
5050
def format(self) -> Literal["openai", "anthropic"]:

0 commit comments

Comments
 (0)