Didier commited on
Commit
915cacc
·
verified ·
1 Parent(s): c1344f6

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -0
app.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """ app.py
2
+ Learning / playing with Google Agent Development Kit (google-adk).
3
+ - Agent with a web_search tool.
4
+ - Agent with an arxiv_search tool.
5
+
6
+ :author: Didier Guillevic
7
+ :date: 2025-10-21
8
+ """
9
+
10
+ import gradio as gr
11
+
12
+ from module_agent_web_search import demo as agent_web_search_block
13
+ from module_agent_arxiv import demo as agent_arxiv_search_block
14
+
15
+ demo = gr.TabbedInterface(
16
+ interface_list=[agent_web_search_block, agent_arxiv_search_block],
17
+ tab_names=["Google Search Agent", "arXiv Search Agent"],
18
+ title="Google Agent Development Kit (google-adk)"
19
+ )
20
+
21
+ demo.launch(mcp_server=True)