Spaces:
Sleeping
Sleeping
Commit
·
08aff20
1
Parent(s):
268cbf5
replaced with experimental params
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ OPEN_ROUTER_KEY = st.secrets["OPEN_ROUTER_KEY"]
|
|
14 |
OPEN_ROUTER_MODEL = "meta-llama/llama-3.1-70b-instruct:free"
|
15 |
|
16 |
try:
|
17 |
-
pswdVal = st.
|
18 |
if pswdVal==st.secrets["PSWD"]:
|
19 |
isPswdValid = True
|
20 |
except:
|
|
|
14 |
OPEN_ROUTER_MODEL = "meta-llama/llama-3.1-70b-instruct:free"
|
15 |
|
16 |
try:
|
17 |
+
pswdVal = st.experimental_get_query_params()['pwd'][0]
|
18 |
if pswdVal==st.secrets["PSWD"]:
|
19 |
isPswdValid = True
|
20 |
except:
|