Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -287,6 +287,16 @@ class GeminiGAIAApp:
|
|
| 287 |
</div>
|
| 288 |
""")
|
| 289 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 290 |
|
| 291 |
# Main Question Interface
|
| 292 |
gr.Markdown("## π Ask Your GAIA Question")
|
|
|
|
| 287 |
</div>
|
| 288 |
""")
|
| 289 |
|
| 290 |
+
# API Key Configuration
|
| 291 |
+
with gr.Row():
|
| 292 |
+
with gr.Column():
|
| 293 |
+
api_key_input = gr.Textbox(
|
| 294 |
+
label="π Google API Key (Required)",
|
| 295 |
+
placeholder="Enter your Google AI API key here...",
|
| 296 |
+
type="password",
|
| 297 |
+
info="Get your free API key from: https://makersuite.google.com/app/apikey"
|
| 298 |
+
)
|
| 299 |
+
test_agent_btn = gr.Button("π§ͺ Test Agent & Tools", variant="secondary")
|
| 300 |
|
| 301 |
# Main Question Interface
|
| 302 |
gr.Markdown("## π Ask Your GAIA Question")
|