Nymbo commited on
Commit
4fe48d6
·
verified ·
1 Parent(s): b1b6396

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -548,7 +548,12 @@ concise_interface = gr.Interface(
548
  # --- Combine all into a single app with tabs ---
549
  demo = gr.TabbedInterface(
550
  interface_list=[fetch_interface, websearch_interface, unstructured_interface, concise_interface],
551
- tab_names=["Fetch", "Websearch", "Unstructured DDG", "DDG (Concise)"],
 
 
 
 
 
552
  title="Web MCP — Fetch & DuckDuckGo search with customizable output modes.",
553
  theme="Nymbo/Nymbo_Theme",
554
  )
 
548
  # --- Combine all into a single app with tabs ---
549
  demo = gr.TabbedInterface(
550
  interface_list=[fetch_interface, websearch_interface, unstructured_interface, concise_interface],
551
+ tab_names=[
552
+ "Fetch Webpage",
553
+ "DuckDuckGo Search (Structured)",
554
+ "DuckDuckGo Search (Raw)",
555
+ "DuckDuckGo Search (Concise)",
556
+ ],
557
  title="Web MCP — Fetch & DuckDuckGo search with customizable output modes.",
558
  theme="Nymbo/Nymbo_Theme",
559
  )