We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 701edfc commit de9dd53Copy full SHA for de9dd53
arkitect/core/component/tool/builtin_tools.py
@@ -34,7 +34,7 @@ async def link_reader(url_list: list[str]) -> dict:
34
}
35
36
response = await client.post(path="/tools/execute", body=body, cast_to=BaseModel)
37
- return response
+ return response.model_dump()
38
39
40
async def calculator(input: str) -> dict:
@@ -53,4 +53,4 @@ async def calculator(input: str) -> dict:
53
54
55
56
0 commit comments