Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
034411e4
"vscode:/vscode.git/clone" did not exist on "e3e38fe3ead8805cba4b52d19a7fe9d98c5fc5c0"
Commit
034411e4
authored
Jul 31, 2024
by
Michael Poluektov
Browse files
fix: type not manifold
parent
baf58ef3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
backend/apps/webui/main.py
backend/apps/webui/main.py
+1
-3
No files found.
backend/apps/webui/main.py
View file @
034411e4
...
...
@@ -147,9 +147,7 @@ async def get_pipe_models():
function_module
=
get_function_module
(
pipe
.
id
)
# Check if function is a manifold
if
hasattr
(
function_module
,
"type"
):
if
not
function_module
.
type
==
"manifold"
:
continue
if
hasattr
(
function_module
,
"type"
)
and
function_module
.
type
==
"manifold"
:
manifold_pipes
=
[]
# Check if pipes is a function or a list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment