File size: 210 Bytes
4daa607 | 1 2 3 4 5 6 7 8 9 10 11 12 | """
Run Purpose Agent from the command line:
python -m purpose_agent
Launches the interactive quickstart wizard.
"""
from purpose_agent.easy import quickstart
if __name__ == "__main__":
quickstart()
|