versionhq 1.1.10.8__tar.gz → 1.1.10.9__tar.gz

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.
Files changed (108) hide show
  1. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/publish.yml +1 -1
  2. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/run_tests.yml +2 -1
  3. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/security_check.yml +1 -1
  4. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.gitignore +3 -2
  5. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.pre-commit-config.yaml +1 -1
  6. versionhq-1.1.10.9/.python-version +1 -0
  7. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/PKG-INFO +44 -34
  8. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/README.md +37 -33
  9. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/pyproject.toml +9 -3
  10. versionhq-1.1.10.9/requirements.txt +690 -0
  11. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/runtime.txt +1 -0
  12. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/__init__.py +1 -1
  13. versionhq-1.1.10.9/src/versionhq/_utils/vars.py +2 -0
  14. versionhq-1.1.10.9/src/versionhq/agent/TEMPLATES/Backstory.py +4 -0
  15. versionhq-1.1.10.9/src/versionhq/agent/default_agents.py +10 -0
  16. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/model.py +127 -39
  17. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/parser.py +3 -20
  18. {versionhq-1.1.10.8/src/versionhq/_utils → versionhq-1.1.10.9/src/versionhq/agent}/rpm_controller.py +22 -15
  19. versionhq-1.1.10.9/src/versionhq/knowledge/_utils.py +11 -0
  20. versionhq-1.1.10.9/src/versionhq/knowledge/embedding.py +192 -0
  21. versionhq-1.1.10.9/src/versionhq/knowledge/model.py +54 -0
  22. versionhq-1.1.10.9/src/versionhq/knowledge/source.py +413 -0
  23. versionhq-1.1.10.9/src/versionhq/knowledge/source_docling.py +129 -0
  24. versionhq-1.1.10.9/src/versionhq/knowledge/storage.py +177 -0
  25. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/llm/model.py +76 -62
  26. versionhq-1.1.10.9/src/versionhq/memory/contextual_memory.py +96 -0
  27. versionhq-1.1.10.9/src/versionhq/memory/model.py +174 -0
  28. versionhq-1.1.10.9/src/versionhq/storage/base.py +14 -0
  29. versionhq-1.1.10.9/src/versionhq/storage/ltm_sqlite_storage.py +131 -0
  30. versionhq-1.1.10.9/src/versionhq/storage/mem0_storage.py +109 -0
  31. versionhq-1.1.10.9/src/versionhq/storage/rag_storage.py +231 -0
  32. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/storage/task_output_storage.py +18 -29
  33. versionhq-1.1.10.9/src/versionhq/storage/utils.py +26 -0
  34. versionhq-1.1.10.9/src/versionhq/task/TEMPLATES/Description.py +5 -0
  35. versionhq-1.1.10.9/src/versionhq/task/evaluate.py +122 -0
  36. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/model.py +134 -43
  37. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/team/team_planner.py +1 -1
  38. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/model.py +44 -46
  39. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/PKG-INFO +44 -34
  40. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/SOURCES.txt +25 -1
  41. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/requires.txt +6 -0
  42. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/agent/agent_test.py +92 -12
  43. {versionhq-1.1.10.8/tests/tool → versionhq-1.1.10.9/tests/knowledge}/__init__.py +0 -0
  44. versionhq-1.1.10.9/tests/knowledge/knowledge_test.py +389 -0
  45. versionhq-1.1.10.9/tests/knowledge/mock_report_compressed.pdf +0 -0
  46. versionhq-1.1.10.9/tests/llm/__init__.py +0 -0
  47. versionhq-1.1.10.9/tests/memory/__init__.py +0 -0
  48. versionhq-1.1.10.9/tests/memory/memory_test.py +83 -0
  49. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/task/task_test.py +56 -7
  50. versionhq-1.1.10.9/tests/team/__init__.py +0 -0
  51. versionhq-1.1.10.9/tests/tool/__init__.py +0 -0
  52. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/tool/tool_test.py +2 -3
  53. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/uv.lock +2085 -100
  54. versionhq-1.1.10.8/.python-version +0 -1
  55. versionhq-1.1.10.8/requirements.txt +0 -285
  56. versionhq-1.1.10.8/src/versionhq/agent/TEMPLATES/Backstory.py +0 -4
  57. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/publish_testpypi.yml +0 -0
  58. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/LICENSE +0 -0
  59. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/SECURITY.md +0 -0
  60. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/db/preprocess.py +0 -0
  61. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/requirements-dev.txt +0 -0
  62. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/setup.cfg +0 -0
  63. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/__init__.py +0 -0
  64. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/i18n.py +0 -0
  65. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/logger.py +0 -0
  66. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/process_config.py +0 -0
  67. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/usage_metrics.py +0 -0
  68. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/TEMPLATES/__init__.py +0 -0
  69. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/__init__.py +0 -0
  70. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/cli/__init__.py +0 -0
  71. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/__init__.py +0 -0
  72. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/customer/__init__.py +0 -0
  73. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/customer/model.py +0 -0
  74. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/product/__init__.py +0 -0
  75. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/product/model.py +0 -0
  76. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/workflow/__init__.py +0 -0
  77. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/workflow/model.py +0 -0
  78. {versionhq-1.1.10.8/src/versionhq/llm → versionhq-1.1.10.9/src/versionhq/knowledge}/__init__.py +0 -0
  79. {versionhq-1.1.10.8/src/versionhq/storage → versionhq-1.1.10.9/src/versionhq/llm}/__init__.py +0 -0
  80. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/llm/llm_vars.py +0 -0
  81. {versionhq-1.1.10.8/src/versionhq/team → versionhq-1.1.10.9/src/versionhq/memory}/__init__.py +0 -0
  82. {versionhq-1.1.10.8/src/versionhq/tool → versionhq-1.1.10.9/src/versionhq/storage}/__init__.py +0 -0
  83. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/__init__.py +0 -0
  84. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/formatter.py +0 -0
  85. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/log_handler.py +0 -0
  86. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/structured_response.py +0 -0
  87. {versionhq-1.1.10.8/tests → versionhq-1.1.10.9/src/versionhq/team}/__init__.py +0 -0
  88. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/team/model.py +0 -0
  89. {versionhq-1.1.10.8/tests/agent → versionhq-1.1.10.9/src/versionhq/tool}/__init__.py +0 -0
  90. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/cache_handler.py +0 -0
  91. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/composio_tool.py +0 -0
  92. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/composio_tool_vars.py +0 -0
  93. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/decorator.py +0 -0
  94. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/tool_handler.py +0 -0
  95. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/dependency_links.txt +0 -0
  96. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/top_level.txt +0 -0
  97. {versionhq-1.1.10.8/tests/cli → versionhq-1.1.10.9/tests}/__init__.py +0 -0
  98. {versionhq-1.1.10.8/tests/llm → versionhq-1.1.10.9/tests/agent}/__init__.py +0 -0
  99. {versionhq-1.1.10.8/tests/team → versionhq-1.1.10.9/tests/cli}/__init__.py +0 -0
  100. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/clients/customer_test.py +0 -0
  101. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/clients/product_test.py +0 -0
  102. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/clients/workflow_test.py +0 -0
  103. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/conftest.py +0 -0
  104. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/llm/llm_test.py +0 -0
  105. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/task/__init__.py +0 -0
  106. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/team/Prompts/Demo_test.py +0 -0
  107. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/team/team_test.py +0 -0
  108. {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/tool/composio_test.py +0 -0
@@ -21,7 +21,7 @@ jobs:
21
21
 
22
22
  - name: Build release distributions
23
23
  run: |
24
- uv venv --python 3.13.1
24
+ uv venv --python 3.12.8
25
25
  source .venv/bin/activate
26
26
  uv pip install --upgrade pip twine
27
27
  uv pip install -r requirements.txt
@@ -17,6 +17,7 @@ env:
17
17
  GEMINI_API_BASE: ${{ secrets.GEMINI_API_BASE }}
18
18
  ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
19
19
  ANTHROPIC_API_BASE: ${{ secrets.ANTHROPIC_API_BASE }}
20
+ MEM0_API_KEY: ${{ secrets.MEM0_API_KEY }}
20
21
 
21
22
  jobs:
22
23
  run_test:
@@ -34,7 +35,7 @@ jobs:
34
35
 
35
36
  - name: Set up the project
36
37
  run: |
37
- uv venv --python 3.13.1
38
+ uv venv --python 3.12.8
38
39
  source .venv/bin/activate
39
40
  uv pip install --upgrade pip pytest
40
41
  uv pip install -r requirements.txt
@@ -18,7 +18,7 @@ jobs:
18
18
  - name: Set up Python
19
19
  uses: actions/setup-python@v5
20
20
  with:
21
- python-version: "3.13.1"
21
+ python-version: "3.12.8"
22
22
 
23
23
  - name: Install dependencies
24
24
  run: uv pip install bandit
@@ -1,8 +1,9 @@
1
1
  deploy.py
2
2
  destinations.py
3
3
 
4
- knowledge/
5
- memory/
4
+ entity_memory.py
5
+
6
+ train.py
6
7
 
7
8
  memo.txt
8
9
 
@@ -6,7 +6,7 @@ repos:
6
6
  - id: end-of-file-fixer
7
7
  - id: trailing-whitespace
8
8
  - id: check-added-large-files
9
- args: ['--maxkb=100']
9
+ args: ['--maxkb=200']
10
10
  - id: check-json
11
11
  - id: check-merge-conflict
12
12
  - id: check-toml
@@ -0,0 +1 @@
1
+ 3.12.8
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: versionhq
3
- Version: 1.1.10.8
3
+ Version: 1.1.10.9
4
4
  Summary: LLM orchestration frameworks for model-agnostic AI agents that handle complex outbound workflows
5
5
  Author-email: Kuriko Iwai <kuriko@versi0n.io>
6
6
  License: MIT License
@@ -56,24 +56,29 @@ Requires-Dist: appdirs>=1.4.4
56
56
  Requires-Dist: langchain>=0.3.14
57
57
  Requires-Dist: langchain-openai>=0.2.14
58
58
  Requires-Dist: composio-langchain>=0.6.12
59
+ Requires-Dist: chromadb>=0.6.3
60
+ Requires-Dist: docling>=2.16.0
61
+ Requires-Dist: json-repair>=0.35.0
62
+ Requires-Dist: wheel>=0.45.1
63
+ Requires-Dist: pdfplumber>=0.11.5
64
+ Requires-Dist: mem0ai>=0.1.48
59
65
 
60
66
  # Overview
61
67
 
62
68
  ![MIT license](https://img.shields.io/badge/License-MIT-green)
63
69
  [![Publisher](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml/badge.svg)](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml)
64
70
  ![PyPI](https://img.shields.io/badge/PyPI->=v1.1.10-blue)
65
- ![python ver](https://img.shields.io/badge/Python-3.12/3.13-purple)
71
+ ![python ver](https://img.shields.io/badge/Python->=3.12-purple)
66
72
  ![pyenv ver](https://img.shields.io/badge/pyenv-2.5.0-orange)
67
73
 
68
74
 
69
- LLM orchestration frameworks to deploy multi-agent systems focusing on complex outbound tasks.
75
+ LLM orchestration frameworks to deploy multi-agent systems with task-based formation.
70
76
 
71
77
  **Visit:**
72
78
 
73
79
  - [PyPI](https://pypi.org/project/versionhq/)
74
80
  - [Github (LLM orchestration framework)](https://github.com/versionHQ/multi-agent-system)
75
- - [Github (Test client app)](https://github.com/versionHQ/test-client-app)
76
- - [Use case](https://versi0n.io/playground) / [Quick demo](https://res.cloudinary.com/dfeirxlea/video/upload/v1737732977/pj_m_home/pnsyh5mfvmilwgt0eusa.mov)
81
+ - [Use case](https://versi0n.io/) / [Quick demo](https://res.cloudinary.com/dfeirxlea/video/upload/v1737732977/pj_m_home/pnsyh5mfvmilwgt0eusa.mov)
77
82
  - [Documentation](https://chief-oxygen-8a2.notion.site/Documentation-17e923685cf98001a5fad5c4b2acd79b?pvs=4) *Some components are under review.
78
83
 
79
84
 
@@ -133,7 +138,7 @@ You can specify which formation you want them to generate, or let the agent deci
133
138
  pip install versionhq
134
139
  ```
135
140
 
136
- (Python >= 3.13)
141
+ (Python >= 3.12)
137
142
 
138
143
 
139
144
  ### Case 1. Solo Agent:
@@ -215,15 +220,18 @@ Tasks can be delegated to a team manager, peers in the team, or completely new a
215
220
  <hr />
216
221
 
217
222
  ## Technologies Used
218
- **Schema, Database, Data Validation**
219
- - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python
220
- - [Pydantic_core](https://pypi.org/project/pydantic-core/): Core func packages for Pydantic
221
- - [Chroma DB](https://docs.trychroma.com/): Vector database for storing and querying usage data
222
- - [SQLite](https://www.sqlite.org/docs.html): C-language library to implements a small SQL database engine
223
+ **Schema, Data Validation**
224
+ - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python.
225
+ - [Pydantic_core](https://pypi.org/project/pydantic-core/): Core func packages for Pydantic.
223
226
  - [Upstage](https://console.upstage.ai/docs/getting-started/overview): Document processer for ML tasks. (Use `Document Parser API` to extract data from documents)
227
+ - [Docling](https://ds4sd.github.io/docling/): Document parsing
228
+
229
+ **Storage**
230
+ - [mem0ai](https://docs.mem0.ai/quickstart#install-package): Agents' memory storage and management.
231
+ - [Chroma DB](https://docs.trychroma.com/): Vector database for storing and querying usage data.
232
+ - [SQLite](https://www.sqlite.org/docs.html): C-language library to implements a small SQL database engine.
224
233
 
225
234
  **LLM-curation**
226
- - OpenAI GPT-4: Advanced language model for analysis and recommendations
227
235
  - [LiteLLM](https://docs.litellm.ai/docs/providers): Curation platform to access LLMs
228
236
 
229
237
  **Tools**
@@ -241,27 +249,29 @@ Tasks can be delegated to a team manager, peers in the team, or completely new a
241
249
 
242
250
  ```
243
251
  .
252
+ .github
253
+ └── workflows/ # Github actions
254
+
244
255
  src/
245
- └── versionHQ/ # Orchestration frameworks on Pydantic
246
- ├── agent/
247
- └── llm/
248
- └── task/
249
- └── team/
250
- └── tool/
251
- └── clients/ # Classes to store the client related information
252
- └── cli/ # CLI commands
253
- └── ...
254
-
255
- ├── db/ # Database files
256
- ├── chroma.sqlite3
257
- └── ...
256
+ └── versionhq/ # Orchestration frameworks
257
+ ├── agent/ # Components
258
+ └── llm/
259
+ └── task/
260
+ └── team/
261
+ └── tool/
262
+ └── cli/
263
+ └── ...
264
+
265
+ ├── db/ # Storage
266
+ ├── chroma.sqlite3
267
+ └── ...
268
+
269
+ └──tests/ # Pytest
270
+ │ └── agent/
271
+ │ └── llm/
272
+ │ └── ...
258
273
 
259
- └──tests/
260
- └── cli/
261
- └── team/
262
- └── ...
263
-
264
- └── uploads/ # Uploaded files for the project
274
+ └── uploads/ # Local repo to store the uploaded files
265
275
 
266
276
  ```
267
277
 
@@ -283,9 +293,9 @@ src/
283
293
 
284
294
  * In case of AssertionError/module mismatch, run Python version control using `.pyenv`
285
295
  ```
286
- pyenv install 3.13.1
287
- pyenv global 3.13.1 (optional: `pyenv global system` to get back to the system default ver.)
288
- uv python pin 3.13.1
296
+ pyenv install 3.12.8
297
+ pyenv global 3.12.8 (optional: `pyenv global system` to get back to the system default ver.)
298
+ uv python pin 3.12.8
289
299
  ```
290
300
 
291
301
  3. Set up environment variables:
@@ -3,18 +3,17 @@
3
3
  ![MIT license](https://img.shields.io/badge/License-MIT-green)
4
4
  [![Publisher](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml/badge.svg)](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml)
5
5
  ![PyPI](https://img.shields.io/badge/PyPI->=v1.1.10-blue)
6
- ![python ver](https://img.shields.io/badge/Python-3.12/3.13-purple)
6
+ ![python ver](https://img.shields.io/badge/Python->=3.12-purple)
7
7
  ![pyenv ver](https://img.shields.io/badge/pyenv-2.5.0-orange)
8
8
 
9
9
 
10
- LLM orchestration frameworks to deploy multi-agent systems focusing on complex outbound tasks.
10
+ LLM orchestration frameworks to deploy multi-agent systems with task-based formation.
11
11
 
12
12
  **Visit:**
13
13
 
14
14
  - [PyPI](https://pypi.org/project/versionhq/)
15
15
  - [Github (LLM orchestration framework)](https://github.com/versionHQ/multi-agent-system)
16
- - [Github (Test client app)](https://github.com/versionHQ/test-client-app)
17
- - [Use case](https://versi0n.io/playground) / [Quick demo](https://res.cloudinary.com/dfeirxlea/video/upload/v1737732977/pj_m_home/pnsyh5mfvmilwgt0eusa.mov)
16
+ - [Use case](https://versi0n.io/) / [Quick demo](https://res.cloudinary.com/dfeirxlea/video/upload/v1737732977/pj_m_home/pnsyh5mfvmilwgt0eusa.mov)
18
17
  - [Documentation](https://chief-oxygen-8a2.notion.site/Documentation-17e923685cf98001a5fad5c4b2acd79b?pvs=4) *Some components are under review.
19
18
 
20
19
 
@@ -74,7 +73,7 @@ You can specify which formation you want them to generate, or let the agent deci
74
73
  pip install versionhq
75
74
  ```
76
75
 
77
- (Python >= 3.13)
76
+ (Python >= 3.12)
78
77
 
79
78
 
80
79
  ### Case 1. Solo Agent:
@@ -156,15 +155,18 @@ Tasks can be delegated to a team manager, peers in the team, or completely new a
156
155
  <hr />
157
156
 
158
157
  ## Technologies Used
159
- **Schema, Database, Data Validation**
160
- - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python
161
- - [Pydantic_core](https://pypi.org/project/pydantic-core/): Core func packages for Pydantic
162
- - [Chroma DB](https://docs.trychroma.com/): Vector database for storing and querying usage data
163
- - [SQLite](https://www.sqlite.org/docs.html): C-language library to implements a small SQL database engine
158
+ **Schema, Data Validation**
159
+ - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python.
160
+ - [Pydantic_core](https://pypi.org/project/pydantic-core/): Core func packages for Pydantic.
164
161
  - [Upstage](https://console.upstage.ai/docs/getting-started/overview): Document processer for ML tasks. (Use `Document Parser API` to extract data from documents)
162
+ - [Docling](https://ds4sd.github.io/docling/): Document parsing
163
+
164
+ **Storage**
165
+ - [mem0ai](https://docs.mem0.ai/quickstart#install-package): Agents' memory storage and management.
166
+ - [Chroma DB](https://docs.trychroma.com/): Vector database for storing and querying usage data.
167
+ - [SQLite](https://www.sqlite.org/docs.html): C-language library to implements a small SQL database engine.
165
168
 
166
169
  **LLM-curation**
167
- - OpenAI GPT-4: Advanced language model for analysis and recommendations
168
170
  - [LiteLLM](https://docs.litellm.ai/docs/providers): Curation platform to access LLMs
169
171
 
170
172
  **Tools**
@@ -182,27 +184,29 @@ Tasks can be delegated to a team manager, peers in the team, or completely new a
182
184
 
183
185
  ```
184
186
  .
187
+ .github
188
+ └── workflows/ # Github actions
189
+
185
190
  src/
186
- └── versionHQ/ # Orchestration frameworks on Pydantic
187
- ├── agent/
188
- └── llm/
189
- └── task/
190
- └── team/
191
- └── tool/
192
- └── clients/ # Classes to store the client related information
193
- └── cli/ # CLI commands
194
- └── ...
195
-
196
- ├── db/ # Database files
197
- ├── chroma.sqlite3
198
- └── ...
191
+ └── versionhq/ # Orchestration frameworks
192
+ ├── agent/ # Components
193
+ └── llm/
194
+ └── task/
195
+ └── team/
196
+ └── tool/
197
+ └── cli/
198
+ └── ...
199
+
200
+ ├── db/ # Storage
201
+ ├── chroma.sqlite3
202
+ └── ...
203
+
204
+ └──tests/ # Pytest
205
+ │ └── agent/
206
+ │ └── llm/
207
+ │ └── ...
199
208
 
200
- └──tests/
201
- └── cli/
202
- └── team/
203
- └── ...
204
-
205
- └── uploads/ # Uploaded files for the project
209
+ └── uploads/ # Local repo to store the uploaded files
206
210
 
207
211
  ```
208
212
 
@@ -224,9 +228,9 @@ src/
224
228
 
225
229
  * In case of AssertionError/module mismatch, run Python version control using `.pyenv`
226
230
  ```
227
- pyenv install 3.13.1
228
- pyenv global 3.13.1 (optional: `pyenv global system` to get back to the system default ver.)
229
- uv python pin 3.13.1
231
+ pyenv install 3.12.8
232
+ pyenv global 3.12.8 (optional: `pyenv global system` to get back to the system default ver.)
233
+ uv python pin 3.12.8
230
234
  ```
231
235
 
232
236
  3. Set up environment variables:
@@ -15,7 +15,7 @@ exclude = ["test*", "__pycache__"]
15
15
 
16
16
  [project]
17
17
  name = "versionhq"
18
- version = "1.1.10.8"
18
+ version = "1.1.10.9"
19
19
  authors = [{ name = "Kuriko Iwai", email = "kuriko@versi0n.io" }]
20
20
  description = "LLM orchestration frameworks for model-agnostic AI agents that handle complex outbound workflows"
21
21
  readme = "README.md"
@@ -39,7 +39,13 @@ dependencies = [
39
39
  "appdirs>=1.4.4",
40
40
  "langchain>=0.3.14",
41
41
  "langchain-openai>=0.2.14",
42
- "composio-langchain>=0.6.12"
42
+ "composio-langchain>=0.6.12",
43
+ "chromadb>=0.6.3",
44
+ "docling>=2.16.0",
45
+ "json-repair>=0.35.0",
46
+ "wheel>=0.45.1",
47
+ "pdfplumber>=0.11.5",
48
+ "mem0ai>=0.1.48",
43
49
  ]
44
50
  classifiers = [
45
51
  "Programming Language :: Python",
@@ -47,7 +53,7 @@ classifiers = [
47
53
  "Operating System :: OS Independent",
48
54
  "Development Status :: 3 - Alpha",
49
55
  "Intended Audience :: Developers",
50
- "Topic :: Software Development :: Build Tools",
56
+ "Topic :: Software Development :: Build Tools"
51
57
  ]
52
58
 
53
59
  [project.urls]