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
954bba9d
"tests/test_models/vscode:/vscode.git/clone" did not exist on "a8f3ec5f6b6df2f555dcec338b76f64357ca71be"
Commit
954bba9d
authored
Dec 03, 2023
by
Timothy J. Baek
Browse files
chore: version update
parent
ee3e991d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
backend/config.py
backend/config.py
+1
-1
src/routes/(app)/modelfiles/+page.svelte
src/routes/(app)/modelfiles/+page.svelte
+1
-0
No files found.
backend/config.py
View file @
954bba9d
...
@@ -31,7 +31,7 @@ if ENV == "prod":
...
@@ -31,7 +31,7 @@ if ENV == "prod":
# WEBUI_VERSION
# WEBUI_VERSION
####################################
####################################
WEBUI_VERSION
=
os
.
environ
.
get
(
"WEBUI_VERSION"
,
"v1.0.0-alpha.
1
1"
)
WEBUI_VERSION
=
os
.
environ
.
get
(
"WEBUI_VERSION"
,
"v1.0.0-alpha.
2
1"
)
####################################
####################################
# WEBUI_AUTH
# WEBUI_AUTH
...
...
src/routes/(app)/modelfiles/+page.svelte
View file @
954bba9d
...
@@ -40,6 +40,7 @@
...
@@ -40,6 +40,7 @@
const deleteModelfilebyTagName = async (tagName) => {
const deleteModelfilebyTagName = async (tagName) => {
await deleteModelHandler(tagName);
await deleteModelHandler(tagName);
await modelfiles.set($modelfiles.filter((modelfile) => modelfile.tagName != tagName));
await modelfiles.set($modelfiles.filter((modelfile) => modelfile.tagName != tagName));
localStorage.setItem('modelfiles', JSON.stringify($modelfiles));
};
};
</script>
</script>
...
...
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