praisonaiagents 0.0.29__py3-none-any.whl → 0.0.53__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,8 @@ from .agents.agents import PraisonAIAgents
7
7
  from .task.task import Task
8
8
  from .tools.tools import Tools
9
9
  from .agents.autoagents import AutoAgents
10
- from .memory.memory import Memory
10
+ from .knowledge.knowledge import Knowledge
11
+ from .knowledge.chunking import Chunking
11
12
  from .main import (
12
13
  TaskOutput,
13
14
  ReflectionOutput,
@@ -36,7 +37,6 @@ __all__ = [
36
37
  'TaskOutput',
37
38
  'ReflectionOutput',
38
39
  'AutoAgents',
39
- 'Memory',
40
40
  'display_interaction',
41
41
  'display_self_reflection',
42
42
  'display_instruction',
@@ -48,4 +48,6 @@ __all__ = [
48
48
  'register_display_callback',
49
49
  'sync_display_callbacks',
50
50
  'async_display_callbacks',
51
+ 'Knowledge',
52
+ 'Chunking'
51
53
  ]