mirror of
https://github.com/open-webui/open-webui
synced 2024-11-07 00:59:52 +00:00
add try: except back
This commit is contained in:
parent
e86688284a
commit
2efcda837c
@ -457,10 +457,13 @@ async def chat_completion_inlets_handler(body, model, extra_params):
|
|||||||
# Extra parameters to be passed to the function
|
# Extra parameters to be passed to the function
|
||||||
custom_params = {**extra_params, "__model__": model, "__id__": filter_id}
|
custom_params = {**extra_params, "__model__": model, "__id__": filter_id}
|
||||||
if hasattr(function_module, "UserValves") and "__user__" in sig.parameters:
|
if hasattr(function_module, "UserValves") and "__user__" in sig.parameters:
|
||||||
uid = custom_params["__user__"]["id"]
|
try:
|
||||||
custom_params["__user__"]["valves"] = function_module.UserValves(
|
uid = custom_params["__user__"]["id"]
|
||||||
**Functions.get_user_valves_by_id_and_user_id(filter_id, uid)
|
custom_params["__user__"]["valves"] = function_module.UserValves(
|
||||||
)
|
**Functions.get_user_valves_by_id_and_user_id(filter_id, uid)
|
||||||
|
)
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
# Add extra params in contained in function signature
|
# Add extra params in contained in function signature
|
||||||
for key, value in custom_params.items():
|
for key, value in custom_params.items():
|
||||||
|
Loading…
Reference in New Issue
Block a user