Rohan03 commited on
Commit
4daa607
·
verified ·
1 Parent(s): 2404239

feat: Easy API — purpose(), Team, quickstart wizard, template auto-detection

Browse files
Files changed (1) hide show
  1. 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()