-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcall_function.py
More file actions
67 lines (57 loc) · 1.62 KB
/
Copy pathcall_function.py
File metadata and controls
67 lines (57 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import json
from collections.abc import Callable
from functions.get_file_content import (
get_file_content,
schema_get_file_content,
)
from functions.get_files_info import (
get_files_info,
schema_get_files_info,
)
from functions.run_python_file import (
run_python_file,
schema_run_python_file,
)
from functions.write_file import (
write_file,
schema_write_file,
)
available_functions = [
schema_run_python_file,
schema_get_files_info,
schema_get_file_content,
schema_write_file,
]
function_map: dict[str, Callable[..., str]] = {
"get_files_info": get_files_info,
"get_file_content": get_file_content,
"run_python_file": run_python_file,
"write_file": write_file,
}
def call_function(tool_call, verbose: bool = False) -> dict:
function_name = tool_call.function.name
function_args = json.loads(
tool_call.function.arguments or "{}"
)
if verbose:
print(
f" - Calling function: "
f"{function_name}({function_args})"
)
else:
print(f" - Calling function: {function_name}")
if function_name not in function_map:
return {
"role": "tool",
"tool_call_id": tool_call.id,
"content": f"Error: Unknown function: {function_name}",
}
# We inject this ourselves for security.
# The LLM is not allowed to choose the working directory.
function_args["working_directory"] = "./calculator"
result = function_map[function_name](**function_args)
return {
"role": "tool",
"tool_call_id": tool_call.id,
"content": result,
}