Spaces:
Sleeping
Sleeping
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() |