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...
e34f436
microhugs
/
app.py
acecalisto3
Update app.py
a143bb2
verified
5 months ago
raw
Copy download link
history
blame
Safe
179 Bytes
import
streamlit
as
st
from
definitions
import
AutonomousAgentApp
def
main
():
autonomous_agent_app = AutonomousAgentApp()
app.run()
if
__name__ ==
"__main__"
:
main()