Update app.py
Browse files
app.py
CHANGED
|
@@ -156,7 +156,6 @@ with gr.Blocks() as demo:
|
|
| 156 |
gr.Markdown("# Basic Agent Evaluation Runner")
|
| 157 |
gr.Markdown(
|
| 158 |
"""
|
| 159 |
-
Modified by niku....
|
| 160 |
**Instructions:**
|
| 161 |
|
| 162 |
1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
|
|
@@ -167,6 +166,7 @@ with gr.Blocks() as demo:
|
|
| 167 |
**Disclaimers:**
|
| 168 |
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).
|
| 169 |
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.
|
|
|
|
| 170 |
"""
|
| 171 |
)
|
| 172 |
|
|
|
|
| 156 |
gr.Markdown("# Basic Agent Evaluation Runner")
|
| 157 |
gr.Markdown(
|
| 158 |
"""
|
|
|
|
| 159 |
**Instructions:**
|
| 160 |
|
| 161 |
1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
|
|
|
|
| 166 |
**Disclaimers:**
|
| 167 |
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).
|
| 168 |
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.
|
| 169 |
+
Please note that this version requires an OpenAI Key to run.
|
| 170 |
"""
|
| 171 |
)
|
| 172 |
|