We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdcea4f commit 2f15872Copy full SHA for 2f15872
web-apps/chat/app.py
@@ -61,7 +61,6 @@ class PossibleSystemPromptException(Exception):
61
streaming=True,
62
)
63
64
-
65
def inference(latest_message, history):
66
# Allow mutating global variable
67
global BACKEND_INITIALISED
web-apps/utils/utils.py
@@ -95,7 +95,7 @@ def load_settings() -> dict:
95
"Please check for typos"
96
97
settings = {**defaults, **overrides}
98
- if "backend_url" not in settings or not settings["backend_url"]:
+ if "backend_url" not in settings or settings["backend_url"] == defaults["backend_url"]:
99
# Try to detect in-cluster address
100
in_cluster_backend = api_address_in_cluster()
101
if not in_cluster_backend:
0 commit comments