File size: 236 Bytes
648a915
 
efc15e1
648a915
 
 
efc15e1
6b8cb8c
efc15e1
648a915
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
from agent import run_agent

def respond(message, history):
    reply = run_agent(message)
    return reply

chat = gr.ChatInterface(respond, title="🤖 Agentic Helper")

if __name__ == "__main__":
    chat.launch()