mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-06 08:18:53 +00:00
refac
This commit is contained in:
parent
2daa610cba
commit
2a4ef46ac8
3 changed files with 4 additions and 4 deletions
|
|
@ -178,7 +178,7 @@ async def process_filter_function(
|
|||
request, filter_id, load_from_db=(filter_type != 'stream'), function=function
|
||||
)
|
||||
handler = getattr(function_module, filter_type, None)
|
||||
if not handler:
|
||||
if not callable(handler):
|
||||
return form_data, valves_by_id, None
|
||||
|
||||
skip_files = (
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.11.1",
|
||||
"version": "0.11.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "open-webui",
|
||||
"version": "0.11.1",
|
||||
"version": "0.11.2",
|
||||
"dependencies": {
|
||||
"@azure/msal-browser": "^4.5.0",
|
||||
"@codemirror/lang-javascript": "^6.2.2",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.11.1",
|
||||
"version": "0.11.2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue