We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b861f3a commit ae05e08Copy full SHA for ae05e08
tests/llama_stack/constants.py
@@ -29,7 +29,7 @@ class ModelInfo(NamedTuple):
29
30
31
IS_DISCONNECTED_CLUSTER: bool = os.getenv("IS_DISCONNECTED_CLUSTER", "false").lower() == "true"
32
-HTTPS_PROXY = os.getenv("SQUID_HTTPS_PROXY", "")
+HTTPS_PROXY: str = os.getenv("SQUID_HTTPS_PROXY", "")
33
34
# LLS_CLIENT_VERIFY_SSL is false by default to be able to test with Self-Signed certificates
35
LLS_CLIENT_VERIFY_SSL = os.getenv("LLS_CLIENT_VERIFY_SSL", "false").lower() == "true"
0 commit comments