Adilbai commited on
Commit
2a38c5a
Β·
verified Β·
1 Parent(s): ab70593

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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")