final assignment gaia agent tools submission enabled system prompt litellm llama system_prompt
Browse files
app.py
CHANGED
|
@@ -4,6 +4,7 @@ import requests
|
|
| 4 |
import inspect
|
| 5 |
import pandas as pd
|
| 6 |
from agents.gaia import GaiaAgent
|
|
|
|
| 7 |
|
| 8 |
# (Keep Constants as is)
|
| 9 |
# --- Constants ---
|
|
@@ -160,5 +161,8 @@ if __name__ == "__main__":
|
|
| 160 |
|
| 161 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
| 162 |
|
| 163 |
-
print("Launching Gradio Interface for
|
|
|
|
|
|
|
|
|
|
| 164 |
demo.launch(debug=True, share=False)
|
|
|
|
| 4 |
import inspect
|
| 5 |
import pandas as pd
|
| 6 |
from agents.gaia import GaiaAgent
|
| 7 |
+
from huggingface_hub import login
|
| 8 |
|
| 9 |
# (Keep Constants as is)
|
| 10 |
# --- Constants ---
|
|
|
|
| 161 |
|
| 162 |
print("-"*(60 + len(" App Starting ")) + "\n")
|
| 163 |
|
| 164 |
+
print(f"Launching Gradio Interface for {space_id_startup} Agent Evaluation...")
|
| 165 |
+
|
| 166 |
+
login()
|
| 167 |
+
|
| 168 |
demo.launch(debug=True, share=False)
|