Rohan03 commited on
Commit
358e009
·
verified ·
1 Parent(s): 7958a2f

feat: unified capabilities (Graph + Parallel + Conversation + Agent + KnowledgeStore)

Browse files
Files changed (1) hide show
  1. purpose_agent/__init__.py +9 -0
purpose_agent/__init__.py CHANGED
@@ -81,6 +81,12 @@ from purpose_agent.registry import (
81
  EmbeddingBackend, default_embedding,
82
  )
83
 
 
 
 
 
 
 
84
  __all__ = [
85
  # Core
86
  "State", "Action", "Trajectory", "TrajectoryStep", "Heuristic",
@@ -110,4 +116,7 @@ __all__ = [
110
  # Plugin Registry
111
  "PluginRegistry", "backend_registry", "callback_registry", "model_registry",
112
  "EmbeddingBackend", "default_embedding",
 
 
 
113
  ]
 
81
  EmbeddingBackend, default_embedding,
82
  )
83
 
84
+ # Unified Capabilities (LangGraph + CrewAI + AutoGen + OpenAI SDK + LlamaIndex)
85
+ from purpose_agent.unified import (
86
+ Agent, Graph, parallel, Conversation, KnowledgeStore,
87
+ START, END, Message,
88
+ )
89
+
90
  __all__ = [
91
  # Core
92
  "State", "Action", "Trajectory", "TrajectoryStep", "Heuristic",
 
116
  # Plugin Registry
117
  "PluginRegistry", "backend_registry", "callback_registry", "model_registry",
118
  "EmbeddingBackend", "default_embedding",
119
+ # Unified Capabilities
120
+ "Agent", "Graph", "parallel", "Conversation", "KnowledgeStore",
121
+ "START", "END", "Message",
122
  ]