Update app.py
Browse files
app.py
CHANGED
|
@@ -133,9 +133,9 @@ ARTICLES:
|
|
| 133 |
|
| 134 |
# === 3. Simplified Gradio UI ===
|
| 135 |
|
| 136 |
-
with gr.Blocks(title="Founder
|
| 137 |
-
gr.Markdown("# 🔎 Founder
|
| 138 |
-
gr.Markdown("A tool to find company founders. **Step 1:** Search for articles. **Step 2:** Extract founders from the results.")
|
| 139 |
|
| 140 |
# Hidden state to pass text from search to extraction
|
| 141 |
search_results_for_ai = gr.State("")
|
|
|
|
| 133 |
|
| 134 |
# === 3. Simplified Gradio UI ===
|
| 135 |
|
| 136 |
+
with gr.Blocks(title="Founder Name Extraction Tool", theme=gr.themes.Soft()) as demo:
|
| 137 |
+
gr.Markdown("# 🔎 Founder Name Extraction")
|
| 138 |
+
gr.Markdown("A tool to find company founders. **Step 1:** Search for articles. **Step 2:** Extract founders' names from the results.")
|
| 139 |
|
| 140 |
# Hidden state to pass text from search to extraction
|
| 141 |
search_results_for_ai = gr.State("")
|