mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 13:40:55 +00:00
refac: rm assert
This commit is contained in:
parent
7df997c992
commit
a9c497612b
@ -589,10 +589,11 @@ class ChatCompletionMiddleware(BaseHTTPMiddleware):
|
|||||||
if prompt is None:
|
if prompt is None:
|
||||||
raise Exception("No user message found")
|
raise Exception("No user message found")
|
||||||
if rag_app.state.config.RELEVANCE_THRESHOLD == 0:
|
if rag_app.state.config.RELEVANCE_THRESHOLD == 0:
|
||||||
assert context_string.strip(), (
|
if context_string.strip() == "":
|
||||||
"With a 0 relevancy threshold for RAG, the context cannot "
|
log.debug(
|
||||||
"be empty"
|
f"With a 0 relevancy threshold for RAG, the context cannot be empty"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Workaround for Ollama 2.0+ system prompt issue
|
# Workaround for Ollama 2.0+ system prompt issue
|
||||||
# TODO: replace with add_or_update_system_message
|
# TODO: replace with add_or_update_system_message
|
||||||
if model["owned_by"] == "ollama":
|
if model["owned_by"] == "ollama":
|
||||||
|
Loading…
Reference in New Issue
Block a user