agent_m/agentm/main.py

14 lines
304 B
Python

import subprocess
from agentm.app import AgentMApp
if __name__ == "__main__":
# Run the generate_theme_css module silently
subprocess.run(
["python", "-m", "agentm.theme.generate_theme_css", "--silent"],
check=True
)
# Launch the app
app = AgentMApp()
app.run()