refac: __user__ param

This commit is contained in:
Timothy J. Baek
2024-06-11 10:35:13 -07:00
parent 8a86f32700
commit 67cd9b76ae
2 changed files with 5 additions and 6 deletions

View File

@@ -57,7 +57,7 @@ def get_tools_specs(tools) -> List[dict]:
for param_name, param_annotation in get_type_hints(
function
).items()
if param_name != "return"
if param_name != "return" and param_name != "__user__"
},
"required": [
name