Commit
·
dd47dc6
1
Parent(s):
0c44617
print submission mode flag
Browse files
app.py
CHANGED
|
@@ -312,8 +312,10 @@ if __name__ == "__main__":
|
|
| 312 |
check_dependencies()
|
| 313 |
agent = GaiaAgent()
|
| 314 |
|
|
|
|
| 315 |
if config.submission_mode_on:
|
| 316 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
| 317 |
demo_submit.launch(debug=True, share=False)
|
| 318 |
else:
|
|
|
|
| 319 |
demo.launch(debug=True, share=False)
|
|
|
|
| 312 |
check_dependencies()
|
| 313 |
agent = GaiaAgent()
|
| 314 |
|
| 315 |
+
print(f"SUBMISSION MODE FLAG ={config.submission_mode_on}")
|
| 316 |
if config.submission_mode_on:
|
| 317 |
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
| 318 |
demo_submit.launch(debug=True, share=False)
|
| 319 |
else:
|
| 320 |
+
print("Launching The GAIA Agent...")
|
| 321 |
demo.launch(debug=True, share=False)
|