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.
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/publish.yml +1 -1
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/run_tests.yml +2 -1
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/security_check.yml +1 -1
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.gitignore +3 -2
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.pre-commit-config.yaml +1 -1
- versionhq-1.1.10.9/.python-version +1 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/PKG-INFO +44 -34
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/README.md +37 -33
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/pyproject.toml +9 -3
- versionhq-1.1.10.9/requirements.txt +690 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/runtime.txt +1 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/__init__.py +1 -1
- versionhq-1.1.10.9/src/versionhq/_utils/vars.py +2 -0
- versionhq-1.1.10.9/src/versionhq/agent/TEMPLATES/Backstory.py +4 -0
- versionhq-1.1.10.9/src/versionhq/agent/default_agents.py +10 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/model.py +127 -39
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/parser.py +3 -20
- {versionhq-1.1.10.8/src/versionhq/_utils → versionhq-1.1.10.9/src/versionhq/agent}/rpm_controller.py +22 -15
- versionhq-1.1.10.9/src/versionhq/knowledge/_utils.py +11 -0
- versionhq-1.1.10.9/src/versionhq/knowledge/embedding.py +192 -0
- versionhq-1.1.10.9/src/versionhq/knowledge/model.py +54 -0
- versionhq-1.1.10.9/src/versionhq/knowledge/source.py +413 -0
- versionhq-1.1.10.9/src/versionhq/knowledge/source_docling.py +129 -0
- versionhq-1.1.10.9/src/versionhq/knowledge/storage.py +177 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/llm/model.py +76 -62
- versionhq-1.1.10.9/src/versionhq/memory/contextual_memory.py +96 -0
- versionhq-1.1.10.9/src/versionhq/memory/model.py +174 -0
- versionhq-1.1.10.9/src/versionhq/storage/base.py +14 -0
- versionhq-1.1.10.9/src/versionhq/storage/ltm_sqlite_storage.py +131 -0
- versionhq-1.1.10.9/src/versionhq/storage/mem0_storage.py +109 -0
- versionhq-1.1.10.9/src/versionhq/storage/rag_storage.py +231 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/storage/task_output_storage.py +18 -29
- versionhq-1.1.10.9/src/versionhq/storage/utils.py +26 -0
- versionhq-1.1.10.9/src/versionhq/task/TEMPLATES/Description.py +5 -0
- versionhq-1.1.10.9/src/versionhq/task/evaluate.py +122 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/model.py +134 -43
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/team/team_planner.py +1 -1
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/model.py +44 -46
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/PKG-INFO +44 -34
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/SOURCES.txt +25 -1
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/requires.txt +6 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/agent/agent_test.py +92 -12
- {versionhq-1.1.10.8/tests/tool → versionhq-1.1.10.9/tests/knowledge}/__init__.py +0 -0
- versionhq-1.1.10.9/tests/knowledge/knowledge_test.py +389 -0
- versionhq-1.1.10.9/tests/knowledge/mock_report_compressed.pdf +0 -0
- versionhq-1.1.10.9/tests/llm/__init__.py +0 -0
- versionhq-1.1.10.9/tests/memory/__init__.py +0 -0
- versionhq-1.1.10.9/tests/memory/memory_test.py +83 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/task/task_test.py +56 -7
- versionhq-1.1.10.9/tests/team/__init__.py +0 -0
- versionhq-1.1.10.9/tests/tool/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/tool/tool_test.py +2 -3
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/uv.lock +2085 -100
- versionhq-1.1.10.8/.python-version +0 -1
- versionhq-1.1.10.8/requirements.txt +0 -285
- versionhq-1.1.10.8/src/versionhq/agent/TEMPLATES/Backstory.py +0 -4
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/.github/workflows/publish_testpypi.yml +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/LICENSE +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/SECURITY.md +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/db/preprocess.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/requirements-dev.txt +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/setup.cfg +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/i18n.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/logger.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/process_config.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/_utils/usage_metrics.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/TEMPLATES/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/agent/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/cli/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/customer/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/customer/model.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/product/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/product/model.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/workflow/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/clients/workflow/model.py +0 -0
- {versionhq-1.1.10.8/src/versionhq/llm → versionhq-1.1.10.9/src/versionhq/knowledge}/__init__.py +0 -0
- {versionhq-1.1.10.8/src/versionhq/storage → versionhq-1.1.10.9/src/versionhq/llm}/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/llm/llm_vars.py +0 -0
- {versionhq-1.1.10.8/src/versionhq/team → versionhq-1.1.10.9/src/versionhq/memory}/__init__.py +0 -0
- {versionhq-1.1.10.8/src/versionhq/tool → versionhq-1.1.10.9/src/versionhq/storage}/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/formatter.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/log_handler.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/task/structured_response.py +0 -0
- {versionhq-1.1.10.8/tests → versionhq-1.1.10.9/src/versionhq/team}/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/team/model.py +0 -0
- {versionhq-1.1.10.8/tests/agent → versionhq-1.1.10.9/src/versionhq/tool}/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/cache_handler.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/composio_tool.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/composio_tool_vars.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/decorator.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq/tool/tool_handler.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/dependency_links.txt +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/src/versionhq.egg-info/top_level.txt +0 -0
- {versionhq-1.1.10.8/tests/cli → versionhq-1.1.10.9/tests}/__init__.py +0 -0
- {versionhq-1.1.10.8/tests/llm → versionhq-1.1.10.9/tests/agent}/__init__.py +0 -0
- {versionhq-1.1.10.8/tests/team → versionhq-1.1.10.9/tests/cli}/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/clients/customer_test.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/clients/product_test.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/clients/workflow_test.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/conftest.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/llm/llm_test.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/task/__init__.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/team/Prompts/Demo_test.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/team/team_test.py +0 -0
- {versionhq-1.1.10.8 → versionhq-1.1.10.9}/tests/tool/composio_test.py +0 -0
@@ -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.
|
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
|
@@ -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.
|
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
|

|
63
69
|
[](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml)
|
64
70
|

|
65
|
-

|
66
72
|

|
67
73
|
|
68
74
|
|
69
|
-
LLM orchestration frameworks to deploy multi-agent systems
|
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
|
-
- [
|
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.
|
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,
|
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
|
-
└──
|
246
|
-
│
|
247
|
-
│
|
248
|
-
│
|
249
|
-
│
|
250
|
-
│
|
251
|
-
│
|
252
|
-
│
|
253
|
-
│
|
254
|
-
│
|
255
|
-
│
|
256
|
-
│
|
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
|
-
└──
|
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.
|
287
|
-
pyenv global 3.
|
288
|
-
uv python pin 3.
|
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
|

|
4
4
|
[](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml)
|
5
5
|

|
6
|
-

|
7
7
|

|
8
8
|
|
9
9
|
|
10
|
-
LLM orchestration frameworks to deploy multi-agent systems
|
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
|
-
- [
|
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.
|
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,
|
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
|
-
└──
|
187
|
-
│
|
188
|
-
│
|
189
|
-
│
|
190
|
-
│
|
191
|
-
│
|
192
|
-
│
|
193
|
-
│
|
194
|
-
│
|
195
|
-
│
|
196
|
-
│
|
197
|
-
│
|
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
|
-
└──
|
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.
|
228
|
-
pyenv global 3.
|
229
|
-
uv python pin 3.
|
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.
|
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]
|