File size: 420 Bytes
376a5ef
 
 
 
 
 
 
 
 
 
 
 
 
84c0aaa
376a5ef
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
""" app.py
Learning / playing with openai-agents.
- Agent with an arxiv_search tool.
:author: Didier Guillevic
:date: 2025-10-23
"""

import gradio as gr

from module_agent_arxiv import demo as agent_arxiv_search_block

demo = gr.TabbedInterface(
    interface_list=[agent_arxiv_search_block],
    tab_names=["arXiv Search Agent"],
    title="OpenAI Agent Development Kit (openai-agents)"
)

demo.launch(show_api=False)