feat: updated the app description.
Browse files
app.py
CHANGED
@@ -158,21 +158,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
158 |
|
159 |
# --- Build Gradio Interface using Blocks ---
|
160 |
with gr.Blocks() as demo:
|
161 |
-
gr.Markdown("#
|
162 |
-
gr.Markdown(
|
163 |
-
"""
|
164 |
-
**Instructions:**
|
165 |
-
|
166 |
-
1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
|
167 |
-
2. Log in to your Hugging Face account using the button below. This uses your HF username for submission.
|
168 |
-
3. Click 'Run Evaluation & Submit All Answers' to fetch questions, run your agent, submit answers, and see the score.
|
169 |
-
|
170 |
-
---
|
171 |
-
**Disclaimers:**
|
172 |
-
Once clicking on the "submit button, it can take quite some time ( this is the time for the agent to go through all the questions).
|
173 |
-
This space provides a basic setup and is intentionally sub-optimal to encourage you to develop your own, more robust solution. For instance for the delay process of the submit button, a solution could be to cache the answers and submit in a seperate action or even to answer the questions in async.
|
174 |
-
"""
|
175 |
-
)
|
176 |
|
177 |
gr.LoginButton()
|
178 |
|
|
|
158 |
|
159 |
# --- Build Gradio Interface using Blocks ---
|
160 |
with gr.Blocks() as demo:
|
161 |
+
gr.Markdown("# Agent Evaluation Runner")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
gr.LoginButton()
|
164 |
|