Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sachin-philip
/
agent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
61857d6
agent
/
app.py
sachin-philip
temp changes
6b8cb8c
about 1 month ago
raw
Copy download link
history
blame
Safe
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()