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
d5063997
Unverified
Commit
d5063997
authored
Jul 10, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
Jul 10, 2024
Browse files
Merge pull request #3768 from open-webui/dev
dev
parents
9bcd4ce5
fede1e9e
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
3 deletions
+8
-3
CHANGELOG.md
CHANGELOG.md
+1
-0
backend/requirements.txt
backend/requirements.txt
+1
-0
src/lib/components/chat/Settings/Interface.svelte
src/lib/components/chat/Settings/Interface.svelte
+4
-1
src/lib/i18n/locales/lt-LT/translation.json
src/lib/i18n/locales/lt-LT/translation.json
+1
-1
src/lib/stores/index.ts
src/lib/stores/index.ts
+1
-1
No files found.
CHANGELOG.md
View file @
d5063997
...
...
@@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
-
**🗃️ Database Backend**
: Switched from Peewee to SQLAlchemy for improved concurrency support, enhancing database performance.
-
**⬆️ ChromaDB Update**
: Upgraded to version 0.5.3. Ensure your remote ChromaDB instance matches this version.
-
**🔤 Primary Font Styling**
: Updated primary font to Archivo for better visual consistency.
-
**🔄 Font Change for Windows**
: Replaced Arimo with Inter font for Windows users, improving readability.
-
**🚀 Lazy Loading**
: Implemented lazy loading for 'faster_whisper' and 'sentence_transformers' to reduce startup memory usage.
...
...
backend/requirements.txt
View file @
d5063997
...
...
@@ -31,6 +31,7 @@ APScheduler==3.10.4
openai
anthropic
google-generativeai==0.5.4
tiktoken
langchain==0.2.6
langchain-community==0.2.6
...
...
src/lib/components/chat/Settings/Interface.svelte
View file @
d5063997
...
...
@@ -144,7 +144,10 @@
chatDirection = $settings.chatDirection ?? 'LTR';
userLocation = $settings.userLocation ?? false;
defaultModelId = ($settings?.models ?? ['']).at(0);
defaultModelId = $settings?.models?.at(0) ?? '';
if ($config?.default_models) {
defaultModelId = $config.default_models.split(',')[0];
}
backgroundImageUrl = $settings.backgroundImageUrl ?? null;
});
...
...
src/lib/i18n/locales/lt-LT/translation.json
View file @
d5063997
...
...
@@ -589,7 +589,7 @@
"Title Auto-Generation"
:
"Automatinis pavadinimų generavimas"
,
"Title cannot be an empty string."
:
"Pavadinimas negali būti tuščias"
,
"Title Generation Prompt"
:
"Pavadinimo generavimo užklausa"
,
"to"
:
"
kam
"
,
"to"
:
"
➡️
"
,
"To access the available model names for downloading,"
:
"Tam, kad prieiti prie galimų parsisiųsti modelių"
,
"To access the GGUF models available for downloading,"
:
"Tam, kad prieiti prie galimų parsisiųsti GGUF,"
,
"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel."
:
""
,
...
...
src/lib/stores/index.ts
View file @
d5063997
...
...
@@ -139,7 +139,7 @@ type Config = {
name
:
string
;
version
:
string
;
default_locale
:
string
;
default_models
:
string
[]
;
default_models
:
string
;
default_prompt_suggestions
:
PromptSuggestion
[];
features
:
{
auth
:
boolean
;
...
...
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