dygoo commited on
Commit
99f18e1
·
verified ·
1 Parent(s): cdb081c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -148,10 +148,10 @@ with gr.Blocks(title="Founder Finder", theme=gr.themes.Soft()) as demo:
148
  with gr.Row():
149
  extract_btn = gr.Button("2. 📊 Extract Founders from Search Results", variant="secondary")
150
 
151
- with gr.Tab("Founder Intelligence Report"):
152
- output_extract = gr.Markdown()
153
  with gr.Tab("Search Results"):
154
  output_search = gr.Markdown()
 
 
155
 
156
  # --- Event Wiring ---
157
 
@@ -171,10 +171,7 @@ with gr.Blocks(title="Founder Finder", theme=gr.themes.Soft()) as demo:
171
  show_progress="full"
172
  )
173
 
174
- gr.Examples(
175
- examples=["OpenAI", "Anthropic", "Mistral AI", "Hugging Face"],
176
- inputs=[name_input],
177
- )
178
 
179
  demo.queue()
180
 
 
148
  with gr.Row():
149
  extract_btn = gr.Button("2. 📊 Extract Founders from Search Results", variant="secondary")
150
 
 
 
151
  with gr.Tab("Search Results"):
152
  output_search = gr.Markdown()
153
+ with gr.Tab("Founder Intelligence Report"):
154
+ output_extract = gr.Markdown()
155
 
156
  # --- Event Wiring ---
157
 
 
171
  show_progress="full"
172
  )
173
 
174
+
 
 
 
175
 
176
  demo.queue()
177