feat: Easy API — purpose(), Team, quickstart wizard, template auto-detection
Browse files- purpose_agent/__main__.py +11 -0
purpose_agent/__main__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Run Purpose Agent from the command line:
|
| 3 |
+
|
| 4 |
+
python -m purpose_agent
|
| 5 |
+
|
| 6 |
+
Launches the interactive quickstart wizard.
|
| 7 |
+
"""
|
| 8 |
+
from purpose_agent.easy import quickstart
|
| 9 |
+
|
| 10 |
+
if __name__ == "__main__":
|
| 11 |
+
quickstart()
|