agent / app.py
sachin-philip's picture
temp changes
6b8cb8c
raw
history blame contribute delete
236 Bytes
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()