Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Akshayram1/smol_agent
acecalisto3
/
microhugs
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
02f5e5f
microhugs
/
app.py
acecalisto3
sync
465ccfc
5 months ago
raw
Copy download link
history
blame
Safe
162 Bytes
import
streamlit
as
st
from
definitions
import
AutonomousAgentApp
def
main
():
app = AutonomousAgentApp()
app.run()
if
__name__ ==
"__main__"
:
main()