microhugs / app.py
acecalisto3's picture
sync
465ccfc
raw
history blame
162 Bytes
import streamlit as st
from definitions import AutonomousAgentApp
def main():
app = AutonomousAgentApp()
app.run()
if __name__ == "__main__":
main()