mirror of
https://github.com/open-webui/open-webui
synced 2024-11-22 08:07:55 +00:00
enh: tool __model__ param support
This commit is contained in:
parent
dcac1a3cb7
commit
dad7af6de1
@ -280,6 +280,13 @@ async def get_function_call_response(
|
|||||||
"__files__": files,
|
"__files__": files,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if "__model__" in sig.parameters:
|
||||||
|
# Call the function with the '__model__' parameter included
|
||||||
|
params = {
|
||||||
|
**params,
|
||||||
|
"__model__": model,
|
||||||
|
}
|
||||||
|
|
||||||
if "__id__" in sig.parameters:
|
if "__id__" in sig.parameters:
|
||||||
# Call the function with the '__id__' parameter included
|
# Call the function with the '__id__' parameter included
|
||||||
params = {
|
params = {
|
||||||
|
Loading…
Reference in New Issue
Block a user