microhugs / app.py
acecalisto3's picture
Update app.py
a143bb2 verified
raw
history blame
179 Bytes
import streamlit as st
from definitions import AutonomousAgentApp
def main():
autonomous_agent_app = AutonomousAgentApp()
app.run()
if __name__ == "__main__":
main()