mirror of
https://github.com/open-webui/open-webui
synced 2025-01-30 22:39:03 +00:00
enh: tool async support
This commit is contained in:
parent
4370f233a1
commit
a2ea6b1b5b
@ -309,6 +309,9 @@ async def get_function_call_response(
|
||||
"__id__": tool_id,
|
||||
}
|
||||
|
||||
if inspect.iscoroutinefunction(function):
|
||||
function_result = await function(**params)
|
||||
else:
|
||||
function_result = function(**params)
|
||||
|
||||
if hasattr(toolkit_module, "citation") and toolkit_module.citation:
|
||||
|
Loading…
Reference in New Issue
Block a user