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
8aa47ea6
Commit
8aa47ea6
authored
Apr 27, 2024
by
Timothy J. Baek
Browse files
fix
parent
704f7e36
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
39 deletions
+51
-39
CHANGELOG.md
CHANGELOG.md
+2
-0
backend/apps/litellm/main.py
backend/apps/litellm/main.py
+49
-39
No files found.
CHANGELOG.md
View file @
8aa47ea6
...
...
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.122] - 2024-04-27
### Added
-
**🌟 Enhanced RAG Pipeline**
: Now with hybrid searching via 'BM25', reranking powered by 'CrossEncoder', and configurable relevance score thresholds.
-
**🛢️ External Database Support**
: Seamlessly connect to custom SQLite or Postgres databases using the 'DATABASE_URL' environment variable.
-
**🌐 Remote ChromaDB Support**
: Introducing the capability to connect to remote ChromaDB servers.
...
...
backend/apps/litellm/main.py
View file @
8aa47ea6
...
...
@@ -28,6 +28,7 @@ log.setLevel(SRC_LOG_LEVELS["LITELLM"])
from
config
import
(
ENABLE_LITELLM
,
ENABLE_MODEL_FILTER
,
MODEL_FILTER_LIST
,
DATA_DIR
,
...
...
@@ -59,6 +60,8 @@ LITELLM_CONFIG_DIR = f"{DATA_DIR}/litellm/config.yaml"
with
open
(
LITELLM_CONFIG_DIR
,
"r"
)
as
file
:
litellm_config
=
yaml
.
safe_load
(
file
)
app
.
state
.
ENABLE
=
ENABLE_LITELLM
app
.
state
.
CONFIG
=
litellm_config
# Global variable to store the subprocess reference
...
...
@@ -209,6 +212,8 @@ async def update_config(form_data: LiteLLMConfigForm, user=Depends(get_admin_use
@
app
.
get
(
"/models"
)
@
app
.
get
(
"/v1/models"
)
async
def
get_models
(
user
=
Depends
(
get_current_user
)):
if
app
.
state
.
ENABLE
:
while
not
background_process
:
await
asyncio
.
sleep
(
0.1
)
...
...
@@ -254,6 +259,11 @@ async def get_models(user=Depends(get_current_user)):
],
"object"
:
"list"
,
}
else
:
return
{
"data"
:
[],
"object"
:
"list"
,
}
@
app
.
get
(
"/model/info"
)
...
...
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