Spaces:
Sleeping
Sleeping
George Sergia
commited on
Commit
·
1a7adb6
1
Parent(s):
8baedcd
Test env
Browse files
app.py
CHANGED
@@ -19,10 +19,9 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
19 |
Fetches all questions, runs the BasicAgent on them, submits all answers,
|
20 |
and displays the results.
|
21 |
"""
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
load_dotenv()
|
27 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
28 |
if HF_TOKEN is not None:
|
|
|
19 |
Fetches all questions, runs the BasicAgent on them, submits all answers,
|
20 |
and displays the results.
|
21 |
"""
|
22 |
+
for name, value in os.environ.items():
|
23 |
+
print("{0}: {1}".format(name, name))
|
24 |
+
|
|
|
25 |
load_dotenv()
|
26 |
HF_TOKEN = os.getenv("HF_TOKEN")
|
27 |
if HF_TOKEN is not None:
|