Rohan03 commited on
Commit
c9a68de
Β·
verified Β·
1 Parent(s): f753c5a

v2.1.0: creative names (Spark/Flow/swarm/Council/Vault) + prod test 19/19 pass

Browse files
Files changed (1) hide show
  1. purpose_agent/__init__.py +6 -2
purpose_agent/__init__.py CHANGED
@@ -22,7 +22,7 @@ Modules:
22
  Easy: easy (purpose(), Team, quickstart wizard)
23
  """
24
 
25
- __version__ = "2.0.0"
26
 
27
  # ── Core ──────────────────────────────────────────────────────────────────
28
  from purpose_agent.types import (
@@ -99,6 +99,8 @@ from purpose_agent.registry import (
99
  from purpose_agent.unified import (
100
  Agent, Graph, parallel, Conversation, KnowledgeStore,
101
  START, END, Message,
 
 
102
  )
103
 
104
  # ── Easy API (the only thing beginners need) ─────────────────────────────
@@ -147,9 +149,11 @@ __all__ = [
147
  # Plugin Registry
148
  "PluginRegistry", "backend_registry", "callback_registry", "model_registry",
149
  "EmbeddingBackend", "default_embedding",
150
- # Unified Capabilities
151
  "Agent", "Graph", "parallel", "Conversation", "KnowledgeStore",
152
  "START", "END", "Message",
 
 
153
  # Easy API
154
  "purpose", "Team", "quickstart", "TEAM_TEMPLATES",
155
  ]
 
22
  Easy: easy (purpose(), Team, quickstart wizard)
23
  """
24
 
25
+ __version__ = "2.1.0"
26
 
27
  # ── Core ──────────────────────────────────────────────────────────────────
28
  from purpose_agent.types import (
 
99
  from purpose_agent.unified import (
100
  Agent, Graph, parallel, Conversation, KnowledgeStore,
101
  START, END, Message,
102
+ # Creative names (primary β€” use these)
103
+ Spark, Flow, swarm, Council, Vault, BEGIN, DONE_SIGNAL,
104
  )
105
 
106
  # ── Easy API (the only thing beginners need) ─────────────────────────────
 
149
  # Plugin Registry
150
  "PluginRegistry", "backend_registry", "callback_registry", "model_registry",
151
  "EmbeddingBackend", "default_embedding",
152
+ # Unified Capabilities (backward-compat names)
153
  "Agent", "Graph", "parallel", "Conversation", "KnowledgeStore",
154
  "START", "END", "Message",
155
+ # Creative names (primary β€” use these)
156
+ "Spark", "Flow", "swarm", "Council", "Vault", "BEGIN", "DONE_SIGNAL",
157
  # Easy API
158
  "purpose", "Team", "quickstart", "TEAM_TEMPLATES",
159
  ]