versionhq 1.2.2.9__tar.gz → 1.2.3.0__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.2.2.9 → versionhq-1.2.3.0}/.github/workflows/publish.yml +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.github/workflows/publish_testpypi.yml +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.github/workflows/run_tests.yml +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.gitignore +4 -0
- versionhq-1.2.3.0/.python-version +1 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/PKG-INFO +11 -11
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/README.md +3 -8
- versionhq-1.2.3.0/docs/core/knowledge.md +11 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/llm/index.md +2 -1
- versionhq-1.2.3.0/docs/core/memory.md +11 -0
- versionhq-1.2.3.0/docs/core/rag-tool.md +85 -0
- versionhq-1.2.3.0/docs/core/task/evaluation.md +77 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/task/index.md +1 -1
- versionhq-1.2.3.0/docs/core/task/reference.md +105 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/task/task-output.md +3 -2
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/task/task-strc-response.md +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/tool.md +2 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/index.md +1 -7
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/quickstart.md +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/mkdocs.yml +4 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/pyproject.toml +25 -3
- versionhq-1.2.3.0/runtime.txt +2 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/__init__.py +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/llm/llm_vars.py +4 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/rag_tool.py +6 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq.egg-info/PKG-INFO +11 -11
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq.egg-info/SOURCES.txt +5 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq.egg-info/requires.txt +8 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/llm/llm_connection_test.py +28 -1
- versionhq-1.2.3.0/tests/task/doc_eval_test.py +23 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task/eval_test.py +1 -1
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/tool/rag_tool_test.py +3 -2
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/uv.lock +1310 -465
- versionhq-1.2.2.9/.python-version +0 -1
- versionhq-1.2.2.9/docs/core/task/evaluation.md +0 -6
- versionhq-1.2.2.9/docs/core/task/task-ref.md +0 -38
- versionhq-1.2.2.9/runtime.txt +0 -2
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.env.sample +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.github/workflows/deploy_docs.yml +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.github/workflows/security_check.yml +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/.pre-commit-config.yaml +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/LICENSE +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/SECURITY.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/db/preprocess.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/CNAME +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/_logos/favicon.ico +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/_logos/logo192.png +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent/config.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent/index.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent/task-handling.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent-network/config.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent-network/form.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent-network/index.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/agent-network/ref.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/task/response-field.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/task/task-execution.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/core/task-graph/index.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/stylesheets/main.css +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/docs/tags.md +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/requirements-dev.txt +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/requirements.txt +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/setup.cfg +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/i18n.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/llm_as_a_judge.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/logger.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/process_config.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/usage_metrics.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/_utils/vars.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/TEMPLATES/Backstory.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/TEMPLATES/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/inhouse_agents.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/parser.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent/rpm_controller.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent_network/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent_network/formation.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/agent_network/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/cli/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/customer/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/customer/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/product/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/product/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/workflow/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/clients/workflow/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/_utils.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/embedding.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/source.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/source_docling.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/knowledge/storage.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/llm/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/llm/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/memory/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/memory/contextual_memory.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/memory/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/base.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/ltm_sqlite_storage.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/mem0_storage.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/rag_storage.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/task_output_storage.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/storage/utils.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task/TEMPLATES/Description.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task/evaluation.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task/formatter.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task/structured_response.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task_graph/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task_graph/colors.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task_graph/draft.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/task_graph/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/cache_handler.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/composio_tool.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/composio_tool_vars.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/decorator.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/model.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq/tool/tool_handler.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq.egg-info/dependency_links.txt +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/src/versionhq.egg-info/top_level.txt +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/_sample/sample.csv +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/_sample/sample.json +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent/agent_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent/doc_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent_network/Prompts/Demo_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent_network/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent_network/agent_network_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/agent_network/doc_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/cli/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/clients/customer_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/clients/product_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/clients/workflow_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/conftest.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/doc_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/formation_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/knowledge/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/knowledge/knowledge_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/knowledge/mock_report_compressed.pdf +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/llm/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/llm/llm_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/memory/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/memory/memory_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task/doc_taskoutput_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task/doc_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task/task_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task_graph/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task_graph/doc_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/task_graph/task_graph_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/tool/__init__.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/tool/composio_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/tool/doc_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/tool/tool_test.py +0 -0
- {versionhq-1.2.2.9 → versionhq-1.2.3.0}/tests/usecase_test.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
3.13.1
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: versionhq
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.3.0
|
4
4
|
Summary: An agentic orchestration framework for building agent networks that handle task automation.
|
5
5
|
Author-email: Kuriko Iwai <kuriko@versi0n.io>
|
6
6
|
License: MIT License
|
@@ -34,13 +34,14 @@ Classifier: Programming Language :: Python
|
|
34
34
|
Classifier: Programming Language :: Python :: 3
|
35
35
|
Classifier: Programming Language :: Python :: 3.11
|
36
36
|
Classifier: Programming Language :: Python :: 3.12
|
37
|
+
Classifier: Programming Language :: Python :: 3.13
|
37
38
|
Classifier: License :: OSI Approved :: MIT License
|
38
39
|
Classifier: Operating System :: OS Independent
|
39
40
|
Classifier: Development Status :: 3 - Alpha
|
40
41
|
Classifier: Intended Audience :: Developers
|
41
42
|
Classifier: Intended Audience :: Information Technology
|
42
43
|
Classifier: Topic :: Software Development :: Build Tools
|
43
|
-
Requires-Python:
|
44
|
+
Requires-Python: >=3.11
|
44
45
|
Description-Content-Type: text/markdown
|
45
46
|
License-File: LICENSE
|
46
47
|
Requires-Dist: regex==2024.11.6
|
@@ -67,8 +68,12 @@ Requires-Dist: composio-core==0.7.0
|
|
67
68
|
Requires-Dist: networkx>=3.4.2
|
68
69
|
Requires-Dist: matplotlib>=3.10.0
|
69
70
|
Requires-Dist: boto3>=1.37.1
|
71
|
+
Provides-Extra: torch
|
72
|
+
Requires-Dist: torch>=2.6.0; extra == "torch"
|
73
|
+
Requires-Dist: torchvision>=0.21.0; extra == "torch"
|
74
|
+
Requires-Dist: pytorch-triton-xpu>=3.2.0; sys_platform == "linux" and extra == "torch"
|
70
75
|
Provides-Extra: docling
|
71
|
-
Requires-Dist: docling>=2.
|
76
|
+
Requires-Dist: docling>=2.25.2; extra == "docling"
|
72
77
|
Provides-Extra: mem0ai
|
73
78
|
Requires-Dist: mem0ai>=0.1.55; extra == "mem0ai"
|
74
79
|
Provides-Extra: pdfplumber
|
@@ -91,7 +96,7 @@ Requires-Dist: scikit-learn>=1.6.1; extra == "eval"
|
|
91
96
|

|
92
97
|
[](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml)
|
93
98
|

|
94
|
-

|
99
|
+

|
95
100
|

|
96
101
|
|
97
102
|
|
@@ -100,7 +105,7 @@ Agentic orchestration framework for multi-agent networks and task graphs for com
|
|
100
105
|
**Visit:**
|
101
106
|
|
102
107
|
- [Playground](https://versi0n.io/)
|
103
|
-
- [
|
108
|
+
- [Documentation](https://docs.versi0n.io)
|
104
109
|
- [Github](https://github.com/versionHQ/)
|
105
110
|
- [Python SDK](https://pypi.org/project/versionhq/)
|
106
111
|
|
@@ -252,7 +257,7 @@ agent.update(
|
|
252
257
|
pip install versionhq
|
253
258
|
```
|
254
259
|
|
255
|
-
(Python 3.11
|
260
|
+
(Python 3.11 | 3.12 | 3.13)
|
256
261
|
|
257
262
|
|
258
263
|
### Launching an agent
|
@@ -384,7 +389,6 @@ Tasks can be delegated to a manager, peers within the agent network, or a comple
|
|
384
389
|
|
385
390
|
**Deployment**
|
386
391
|
|
387
|
-
* **Python**: Primary programming language. v3.12.x is recommended
|
388
392
|
* [uv](https://docs.astral.sh/uv/): Python package installer and resolver
|
389
393
|
* [pre-commit](https://pre-commit.com/): Manage and maintain pre-commit hooks
|
390
394
|
* [setuptools](https://pypi.org/project/setuptools/): Build python modules
|
@@ -473,8 +477,6 @@ pyproject.toml # Project config
|
|
473
477
|
uv sync --all-extras --no-extra pygraphviz
|
474
478
|
```
|
475
479
|
|
476
|
-
- `torch`/`Docling` related errors: Set up default Python version either `3.11.x` or `3.12.x` (same as AssertionError)
|
477
|
-
|
478
480
|
### Adding env secrets to .env file
|
479
481
|
|
480
482
|
Create `.env` file in the project root and add secret vars following `.env.sample` file.
|
@@ -580,8 +582,6 @@ Common issues and solutions:
|
|
580
582
|
|
581
583
|
* Memory errors: If processing large contracts, you may need to increase the available memory for the Python process.
|
582
584
|
|
583
|
-
* Issues related to the Python version: Docling/Pytorch is not ready for Python 3.13 as of Jan 2025. Use Python 3.12.x as default by running `uv venv --python 3.12.8` and `uv python pin 3.12.8`.
|
584
|
-
|
585
585
|
* Issues related to dependencies: `rm -rf uv.lock`, `uv cache clean`, `uv venv`, and run `uv pip install -r requirements.txt -v`.
|
586
586
|
|
587
587
|
* Issues related to agents and other systems: Check `.logs` directory located in the root directory for error messages and stack traces.
|
@@ -4,7 +4,7 @@
|
|
4
4
|

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

|
7
|
-

|
7
|
+

|
8
8
|

|
9
9
|
|
10
10
|
|
@@ -13,7 +13,7 @@ Agentic orchestration framework for multi-agent networks and task graphs for com
|
|
13
13
|
**Visit:**
|
14
14
|
|
15
15
|
- [Playground](https://versi0n.io/)
|
16
|
-
- [
|
16
|
+
- [Documentation](https://docs.versi0n.io)
|
17
17
|
- [Github](https://github.com/versionHQ/)
|
18
18
|
- [Python SDK](https://pypi.org/project/versionhq/)
|
19
19
|
|
@@ -165,7 +165,7 @@ agent.update(
|
|
165
165
|
pip install versionhq
|
166
166
|
```
|
167
167
|
|
168
|
-
(Python 3.11
|
168
|
+
(Python 3.11 | 3.12 | 3.13)
|
169
169
|
|
170
170
|
|
171
171
|
### Launching an agent
|
@@ -297,7 +297,6 @@ Tasks can be delegated to a manager, peers within the agent network, or a comple
|
|
297
297
|
|
298
298
|
**Deployment**
|
299
299
|
|
300
|
-
* **Python**: Primary programming language. v3.12.x is recommended
|
301
300
|
* [uv](https://docs.astral.sh/uv/): Python package installer and resolver
|
302
301
|
* [pre-commit](https://pre-commit.com/): Manage and maintain pre-commit hooks
|
303
302
|
* [setuptools](https://pypi.org/project/setuptools/): Build python modules
|
@@ -386,8 +385,6 @@ pyproject.toml # Project config
|
|
386
385
|
uv sync --all-extras --no-extra pygraphviz
|
387
386
|
```
|
388
387
|
|
389
|
-
- `torch`/`Docling` related errors: Set up default Python version either `3.11.x` or `3.12.x` (same as AssertionError)
|
390
|
-
|
391
388
|
### Adding env secrets to .env file
|
392
389
|
|
393
390
|
Create `.env` file in the project root and add secret vars following `.env.sample` file.
|
@@ -493,8 +490,6 @@ Common issues and solutions:
|
|
493
490
|
|
494
491
|
* Memory errors: If processing large contracts, you may need to increase the available memory for the Python process.
|
495
492
|
|
496
|
-
* Issues related to the Python version: Docling/Pytorch is not ready for Python 3.13 as of Jan 2025. Use Python 3.12.x as default by running `uv venv --python 3.12.8` and `uv python pin 3.12.8`.
|
497
|
-
|
498
493
|
* Issues related to dependencies: `rm -rf uv.lock`, `uv cache clean`, `uv venv`, and run `uv pip install -r requirements.txt -v`.
|
499
494
|
|
500
495
|
* Issues related to agents and other systems: Check `.logs` directory located in the root directory for error messages and stack traces.
|
@@ -0,0 +1,85 @@
|
|
1
|
+
---
|
2
|
+
tags:
|
3
|
+
- Utilities
|
4
|
+
---
|
5
|
+
|
6
|
+
|
7
|
+
# RAG Tool
|
8
|
+
|
9
|
+
<class>`class` versionhq.tool.rag_tool.<bold>RagTool<bold></class>
|
10
|
+
|
11
|
+
A Pydantic class to store RAG tools that the agent will use when it executes the task.
|
12
|
+
|
13
|
+
|
14
|
+
## Quick Start
|
15
|
+
|
16
|
+
Similar to the `Tool` class, you can run the RAG tool using `url` and `query` variables.
|
17
|
+
|
18
|
+
```python
|
19
|
+
import versionhq as vhq
|
20
|
+
|
21
|
+
rt = vhq.RagTool(
|
22
|
+
url="https://github.com/chroma-core/chroma/issues/3233",
|
23
|
+
query="What is the next action plan?"
|
24
|
+
)
|
25
|
+
res = rt.run()
|
26
|
+
|
27
|
+
assert rt.text is not None # text source from the url
|
28
|
+
assert res is not None
|
29
|
+
```
|
30
|
+
|
31
|
+
|
32
|
+
<hr>
|
33
|
+
|
34
|
+
## Using with Agents
|
35
|
+
|
36
|
+
You can call a specific agent when you run a RAG tool.
|
37
|
+
|
38
|
+
```python
|
39
|
+
import versionhq as vhq
|
40
|
+
|
41
|
+
rt = vhq.RagTool(url="https://github.com/chroma-core/chroma/issues/3233", query="What is the next action plan?")
|
42
|
+
|
43
|
+
agent = vhq.Agent(role="RAG Tool Tester")
|
44
|
+
res = rt.run(agent=agent)
|
45
|
+
|
46
|
+
assert agent.knowledge_sources is not None
|
47
|
+
assert rt.text is not None
|
48
|
+
assert res is not None
|
49
|
+
```
|
50
|
+
|
51
|
+
|
52
|
+
Agents can own RAG tools.
|
53
|
+
|
54
|
+
```python
|
55
|
+
import versionhq as vhq
|
56
|
+
|
57
|
+
rt = vhq.RagTool(url="https://github.com/chroma-core/chroma/issues/3233", query="What is the next action plan?")
|
58
|
+
|
59
|
+
agent = vhq.Agent(role="RAG Tool Tester", tools=[rt]) # adding RAG tool/s
|
60
|
+
task = vhq.Task(description="return a simple response", can_use_agent_tools=True, tool_res_as_final=True)
|
61
|
+
res = task.execute(agent=agent)
|
62
|
+
|
63
|
+
assert res.raw is not None
|
64
|
+
assert res.tool_output is not None
|
65
|
+
```
|
66
|
+
|
67
|
+
|
68
|
+
### Variables
|
69
|
+
|
70
|
+
| <div style="width:160px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
71
|
+
| :--- | :--- | :--- | :--- | :--- |
|
72
|
+
| **`api_key_name`** | Optional[str] | None | True | API key name in .env file. |
|
73
|
+
| **`api_endpoint`** | Optional[str] | None | True |API endpoint. |
|
74
|
+
| **`url`** | Optional[str] | None | True | URLs to extract the text source. |
|
75
|
+
| **`headers`** | Optional[Dict[str, Any]] | dict() | - | Request headers |
|
76
|
+
| **`query`** | Optional[str] | None | True | Query. |
|
77
|
+
| **`text`** | Optional[str] | None | True | Text sources extracted from the URL or API call |
|
78
|
+
|
79
|
+
|
80
|
+
### Class Methods
|
81
|
+
|
82
|
+
| <div style="width:120px">**Method**</div> | <div style="width:300px">**Params**</div> | **Returns** | **Description** |
|
83
|
+
| :--- | :--- | :--- | :--- |
|
84
|
+
| **`store_data`** | <p>agent: Optional["vhq.Agent"] = Non</p> | None | Stores the retrieved data in the storage. |
|
85
|
+
| **`run`** | *args, **kwargs | Any | Execute the tool. |
|
@@ -0,0 +1,77 @@
|
|
1
|
+
---
|
2
|
+
tags:
|
3
|
+
- Task Graph
|
4
|
+
---
|
5
|
+
|
6
|
+
# Evaluation
|
7
|
+
|
8
|
+
<class>`class` versionhq.task.evaluate.<bold>Evaluation<bold></class>
|
9
|
+
|
10
|
+
A Pydantic class to store conditions and results of the evaluation.
|
11
|
+
|
12
|
+
|
13
|
+
### Variables
|
14
|
+
|
15
|
+
| <div style="width:120px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
16
|
+
| :--- | :--- | :--- | :--- | :--- |
|
17
|
+
| **`items`** | List[InstanceOf[EvaluationItem]] | list() | - | Stores evaluation items. |
|
18
|
+
| **`eval_by`** | Any | None | True | Stores an agent evaluated the output. |
|
19
|
+
|
20
|
+
|
21
|
+
### Property
|
22
|
+
|
23
|
+
| <div style="width:120px">**Property**</div> | **Returns** | **Description** |
|
24
|
+
| :--- | :--- | :--- |
|
25
|
+
| **`aggregate_score`** | float | Calucurates weighted average eval scores of the task output. |
|
26
|
+
| **`suggestion_summary`** | str | Returns summary of the suggestions. |
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
<hr>
|
31
|
+
|
32
|
+
## EvaluationItem
|
33
|
+
|
34
|
+
<class>`class` versionhq.task.evaluate.<bold>EvaluationItem<bold></class>
|
35
|
+
|
36
|
+
### Variables
|
37
|
+
|
38
|
+
| <div style="width:120px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
39
|
+
| :--- | :--- | :--- | :--- | :--- |
|
40
|
+
| **`criteria`** | str | None | False | Stores evaluation criteria given by the client. |
|
41
|
+
| **`suggestion`** | str | None | True | Stores suggestion on improvement from the evaluator agent. |
|
42
|
+
| **`score`** | float | None | True | Stores the score on a 0 to 1 scale. |
|
43
|
+
|
44
|
+
|
45
|
+
<hr>
|
46
|
+
|
47
|
+
## Usage
|
48
|
+
|
49
|
+
Evaluator agents will evaluate the task output based on the given criteria, and store the results in the `TaskOutput` object.
|
50
|
+
|
51
|
+
|
52
|
+
```python
|
53
|
+
import versionhq as vhq
|
54
|
+
from pydantic import BaseModel
|
55
|
+
|
56
|
+
class CustomOutput(BaseModel):
|
57
|
+
test1: str
|
58
|
+
test2: list[str]
|
59
|
+
|
60
|
+
task = vhq.Task(
|
61
|
+
description="Research a topic to teach a kid aged 6 about math.",
|
62
|
+
pydantic_output=CustomOutput,
|
63
|
+
should_evaluate=True, # triggers evaluation
|
64
|
+
eval_criteria=["uniquness", "audience fit",],
|
65
|
+
|
66
|
+
)
|
67
|
+
res = task.execute()
|
68
|
+
|
69
|
+
assert isinstance(res.evaluation, vhq.Evaluation)
|
70
|
+
assert [item for item in res.evaluation.items if item.criteria == "uniquness" or item.criteria == "audience fit"]
|
71
|
+
assert res.evaluation.aggregate_score is not None
|
72
|
+
assert res.evaluation.suggestion_summary is not None
|
73
|
+
```
|
74
|
+
|
75
|
+
An `Evaluation` object provides scores for the given criteria.
|
76
|
+
|
77
|
+
For example, it might indicate a `uniqueness` score of 0.56, an `audience fit` score of 0.70, and an `aggregate score` of 0.63.
|
@@ -7,7 +7,7 @@ tags:
|
|
7
7
|
|
8
8
|
<class>`class` versionhq.task.model.<bold>Task<bold></class>
|
9
9
|
|
10
|
-
A class to store and manage information for individual tasks, including their assignment to agents or agent networks, and dependencies via a node-based system that tracks conditions and status.
|
10
|
+
A Pydantic class to store and manage information for individual tasks, including their assignment to agents or agent networks, and dependencies via a node-based system that tracks conditions and status.
|
11
11
|
|
12
12
|
Ref. Node / Edge / <a href="/core/task-graph">TaskGraph</a> class
|
13
13
|
|
@@ -0,0 +1,105 @@
|
|
1
|
+
## `Task`
|
2
|
+
|
3
|
+
### Variables
|
4
|
+
|
5
|
+
| <div style="width:160px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
6
|
+
| :--- | :--- | :--- | :--- | :--- |
|
7
|
+
| **`id`** | UUID | uuid.uuid4() | False | Stores task `id` as an identifier. |
|
8
|
+
| **`name`** | Optional[str] | None | True | Stores a task name (Inherited as `node` identifier if the task is dependent) |
|
9
|
+
| **`description`** | str | None | False | Required field to store a concise task description |
|
10
|
+
| **`pydantic_output`** | Optional[Type[BaseModel]] | None | True | Stores pydantic custom output class for structured response |
|
11
|
+
| **`response_fields`** | Optional[List[ResponseField]] | list() | True | Stores JSON formats for stuructured response |
|
12
|
+
| **`tools`** | Optional[List[ToolSet | Tool | Any]] | None | True | Stores tools to be called when the agent executes the task. |
|
13
|
+
| **`can_use_agent_tools`** | bool | True | - | Whether to use the agent tools |
|
14
|
+
| **`tool_res_as_final`** | bool | False | - | Whether to make the tool response a final response from the agent |
|
15
|
+
| **`execution_type`** | TaskExecutionType | TaskExecutionType.SYNC | - | Sync or async execution |
|
16
|
+
| **`allow_delegation`** | bool | False | - | Whether to allow the agent to delegate the task to another agent |
|
17
|
+
| **`callback`** | Optional[Callable] | None | True | Callback function to be executed after LLM calling |
|
18
|
+
| **`callback_kwargs`** | Optional[Dict[str, Any]] | dict() | True | Args for the callback function (if any)|
|
19
|
+
| **`should_evaluate`** | bool | False | - | Whether to evaluate the task output using eval criteria |
|
20
|
+
| **`eval_criteria`** | Optional[List[str]] | list() | True | Evaluation criteria given by the human client |
|
21
|
+
| **`fsls`** | Optional[List[str]] | None | True | Examples of excellent and weak responses |
|
22
|
+
| **`processed_agents`** | Set[str] | set() | True | [Ops] Stores roles of the agents executed the task |
|
23
|
+
| **`tool_errors`** | int | 0 | True | [Ops] Stores number of tool errors |
|
24
|
+
| **`delegation`** | int | 0 | True | [Ops] Stores number of agent delegations |
|
25
|
+
| **`output`** | Optional[TaskOutput] | None | True | [Ops] Stores `TaskOutput` object after the execution |
|
26
|
+
|
27
|
+
|
28
|
+
### Class Methods
|
29
|
+
|
30
|
+
| <div style="width:120px">**Method**</div> | <div style="width:300px">**Params**</div> | **Returns** | **Description** |
|
31
|
+
| :--- | :--- | :--- | :--- |
|
32
|
+
| **`execute`** | <p>type: TaskExecutionType = None<br>agent: Optional["vhq.Agent"] = None<br>context: Optional[Any] = None</p> | InstanceOf[`TaskOutput`] or None (error) | A main method to handle task execution. Auto-build an agent when the agent is not given. |
|
33
|
+
|
34
|
+
|
35
|
+
### Properties
|
36
|
+
|
37
|
+
| <div style="width:120px">**Property**</div> | **Returns** | **Description** |
|
38
|
+
| :--- | :--- | :--- |
|
39
|
+
| **`key`** | str | Returns task key based on its description and output format. |
|
40
|
+
| **`summary`** | str | Returns a summary of the task based on its id, description and tools. |
|
41
|
+
|
42
|
+
<hr>
|
43
|
+
|
44
|
+
## `TaskOutput`
|
45
|
+
|
46
|
+
### Variables
|
47
|
+
|
48
|
+
| <div style="width:120px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
49
|
+
| :--- | :--- | :--- | :--- | :--- |
|
50
|
+
| **`task_id`** | UUID | uuid.uuid4() | False | Stores task `id` as an identifier. |
|
51
|
+
| **`raw`** | str | None | False | Stores response in plane text format. `None` or `""` when the model returned errors.|
|
52
|
+
| **`json_dict`** | Dict[str, Any] | None | False | Stores response in JSON serializable dictionary. When the system failed formatting or executing tasks without response_fields, `{ output: <res.raw> }` will be returned. |
|
53
|
+
| **`pydantic`** | Type[`BaseModel`] | None | True | Populates and stores Pydantic class object defined in the `pydantic_output` field. `None` if `pydantic_output` is NOT given. |
|
54
|
+
| **`tool_output`** | Optional[Any] | None | True | Stores results from the tools of the task or agents ONLY when `tool_res_as_final` set as `True`. |
|
55
|
+
| **`callback_output`** | Optional[Any] | None | True | Stores results from callback functions if any. |
|
56
|
+
| **`latency`** | Optional[float] | None | True | Stores job latency in milseconds. |
|
57
|
+
| **`evaluation`** | Optional[InstanceOf[`Evaluation`]] | None | True | Stores overall evaluations and usage of the task output. |
|
58
|
+
|
59
|
+
|
60
|
+
### Class Methods
|
61
|
+
|
62
|
+
| <div style="width:120px">**Method**</div> | **Params** | **Returns** | **Description** |
|
63
|
+
| :--- | :--- | :--- | :--- |
|
64
|
+
| **`evaluate`** | task: InstanceOf[`Task`] | InstanceOf[`Evaluation`] | Evaluates task output based on the criteria |
|
65
|
+
|
66
|
+
|
67
|
+
### Property
|
68
|
+
|
69
|
+
| <div style="width:120px">**Property**</div> | **Returns** | **Description** |
|
70
|
+
| :--- | :--- | :--- |
|
71
|
+
| **`aggregate_score`** | float | Calucurates weighted average eval scores of the task output. |
|
72
|
+
| **`json_string`** | str | Returns `json_dict` in string format. |
|
73
|
+
|
74
|
+
|
75
|
+
<hr>
|
76
|
+
|
77
|
+
## `Evaluation`
|
78
|
+
|
79
|
+
### Variables
|
80
|
+
|
81
|
+
| <div style="width:120px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
82
|
+
| :--- | :--- | :--- | :--- | :--- |
|
83
|
+
| **`items`** | List[InstanceOf[EvaluationItem]] | list() | - | Stores evaluation items. |
|
84
|
+
| **`eval_by`** | Any | None | True | Stores an agent evaluated the output. |
|
85
|
+
|
86
|
+
|
87
|
+
### Property
|
88
|
+
|
89
|
+
| <div style="width:120px">**Property**</div> | **Returns** | **Description** |
|
90
|
+
| :--- | :--- | :--- |
|
91
|
+
| **`aggregate_score`** | float | Calucurates weighted average eval scores of the task output. |
|
92
|
+
| **`suggestion_summary`** | str | Returns summary of the suggestions. |
|
93
|
+
|
94
|
+
|
95
|
+
<hr>
|
96
|
+
|
97
|
+
## `EvaluationItem`
|
98
|
+
|
99
|
+
### Variables
|
100
|
+
|
101
|
+
| <div style="width:120px">**Variable**</div> | **Data Type** | **Default** | **Nullable** | **Description** |
|
102
|
+
| :--- | :--- | :--- | :--- | :--- |
|
103
|
+
| **`criteria`** | str | None | False | Stores evaluation criteria given by the client. |
|
104
|
+
| **`suggestion`** | str | None | True | Stores suggestion on improvement from the evaluator agent. |
|
105
|
+
| **`score`** | float | None | True | Stores the score on a 0 to 1 scale. |
|
@@ -7,7 +7,7 @@ tags:
|
|
7
7
|
|
8
8
|
<class>`class` versionhq.task.model.<bold>TaskOutput<bold></class>
|
9
9
|
|
10
|
-
A Pydantic class to store and manage
|
10
|
+
A Pydantic class to store and manage results of `Task`.
|
11
11
|
|
12
12
|
<hr />
|
13
13
|
|
@@ -18,9 +18,10 @@ A Pydantic class to store and manage response from the `Task` object.
|
|
18
18
|
| **`task_id`** | UUID | uuid.uuid4() | False | Stores task `id` as an identifier. |
|
19
19
|
| **`raw`** | str | None | False | Stores response in plane text format. `None` or `""` when the model returned errors.|
|
20
20
|
| **`json_dict`** | Dict[str, Any] | None | False | Stores response in JSON serializable dictionary. When the system failed formatting or executing tasks without response_fields, `{ output: <res.raw> }` will be returned. |
|
21
|
-
| **`pydantic`** | Type[`BaseModel`] | None | True | Populates and stores Pydantic class defined in the `pydantic_output` field. `None` if `pydantic_output` is NOT given. |
|
21
|
+
| **`pydantic`** | Type[`BaseModel`] | None | True | Populates and stores Pydantic class object defined in the `pydantic_output` field. `None` if `pydantic_output` is NOT given. |
|
22
22
|
| **`tool_output`** | Optional[Any] | None | True | Stores results from the tools of the task or agents ONLY when `tool_res_as_final` set as `True`. |
|
23
23
|
| **`callback_output`** | Optional[Any] | None | True | Stores results from callback functions if any. |
|
24
|
+
| **`latency`** | Optional[float] | None | True | Stores job latency in milseconds. |
|
24
25
|
| **`evaluation`** | Optional[InstanceOf[`Evaluation`]] | None | True | Stores overall evaluations and usage of the task output. |
|
25
26
|
|
26
27
|
|
@@ -12,7 +12,7 @@ But you can choose to generate Pydantic class or specifig JSON object as respons
|
|
12
12
|
|
13
13
|
`[var]`<bold>`pydantic_output: Optional[Type[BaseModel]] = None`</bold>
|
14
14
|
|
15
|
-
|
15
|
+
Add a `custom Pydantic class` as a structured response format to the `pydantic_output` field.
|
16
16
|
|
17
17
|
The custom class can accept **one layer of a nested child** as you can see in the following code snippet:
|
18
18
|
|
@@ -4,7 +4,7 @@
|
|
4
4
|

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

|
7
|
-

|
7
|
+

|
8
8
|

|
9
9
|
|
10
10
|
A Python framework for agentic orchestration that handles complex task automation.
|
@@ -175,8 +175,6 @@ agent.update(
|
|
175
175
|
uv sync --all-extras --no-extra pygraphviz
|
176
176
|
```
|
177
177
|
|
178
|
-
- `torch`/`Docling` related errors: Set up default Python version either `3.11.x` or `3.12.x` (same as AssertionError)
|
179
|
-
|
180
178
|
**Setting up a local env file**
|
181
179
|
|
182
180
|
Create `.env` file at the root of the project directry and add your keys following `.env.sample`.
|
@@ -221,8 +219,6 @@ Create `.env` file at the root of the project directry and add your keys followi
|
|
221
219
|
|
222
220
|
**Deployment**
|
223
221
|
|
224
|
-
* **Python**: Primary programming language. v3.12.x is recommended
|
225
|
-
|
226
222
|
* [uv](https://docs.astral.sh/uv/): Python package installer and resolver
|
227
223
|
|
228
224
|
* [pre-commit](https://pre-commit.com/): Manage and maintain pre-commit hooks
|
@@ -241,8 +237,6 @@ Common issues and solutions:
|
|
241
237
|
|
242
238
|
* Memory errors: If processing large contracts, you may need to increase the available memory for the Python process.
|
243
239
|
|
244
|
-
* Issues related to the Python version: Docling/Pytorch is not ready for Python 3.13 as of Jan 2025. Use Python 3.12.x as default by running `uv venv --python 3.12.8` and `uv python pin 3.12.8`.
|
245
|
-
|
246
240
|
* Issues related to dependencies: `rm -rf uv.lock`, `uv cache clean`, `uv venv`, and run `uv pip install -r requirements.txt -v`.
|
247
241
|
|
248
242
|
* Issues related to agents and other systems: Check `.logs` directory located in the root directory for detailed error messages and stack traces.
|
@@ -131,9 +131,12 @@ nav:
|
|
131
131
|
- Executing: 'core/task/task-execution.md'
|
132
132
|
- Outputs: 'core/task/task-output.md'
|
133
133
|
- Evaluating: 'core/task/evaluation.md'
|
134
|
-
- Reference: 'core/task/
|
134
|
+
- Reference: 'core/task/reference.md'
|
135
135
|
- Components:
|
136
136
|
- Tool: 'core/tool.md'
|
137
|
+
- RAG Tool: core/rag-tool.md
|
138
|
+
- Memory: core/memory.md
|
139
|
+
- Knowledge: core/knowledge.md
|
137
140
|
- Archive: 'tags.md'
|
138
141
|
- Cases:
|
139
142
|
- Playground: https://versi0n.io/playground
|
@@ -15,11 +15,11 @@ exclude = ["test*", "__pycache__", "*.egg-info"]
|
|
15
15
|
|
16
16
|
[project]
|
17
17
|
name = "versionhq"
|
18
|
-
version = "1.2.
|
18
|
+
version = "1.2.3.0"
|
19
19
|
authors = [{ name = "Kuriko Iwai", email = "kuriko@versi0n.io" }]
|
20
20
|
description = "An agentic orchestration framework for building agent networks that handle task automation."
|
21
21
|
readme = "README.md"
|
22
|
-
requires-python = ">=3.11
|
22
|
+
requires-python = ">=3.11"
|
23
23
|
license = { file = "LICENSE" }
|
24
24
|
keywords = ["orchestration framework", "orchestration", "ai agent", "multi-agent system", "RAG", "agent", "agentic orchestration", "llm"]
|
25
25
|
dependencies = [
|
@@ -53,6 +53,7 @@ classifiers = [
|
|
53
53
|
"Programming Language :: Python :: 3",
|
54
54
|
"Programming Language :: Python :: 3.11",
|
55
55
|
"Programming Language :: Python :: 3.12",
|
56
|
+
"Programming Language :: Python :: 3.13",
|
56
57
|
"License :: OSI Approved :: MIT License",
|
57
58
|
"Operating System :: OS Independent",
|
58
59
|
"Development Status :: 3 - Alpha",
|
@@ -68,8 +69,13 @@ Repository = "https://github.com/versionHQ/multi-agent-system"
|
|
68
69
|
Issues = "https://github.com/versionHQ/multi-agent-system/issues"
|
69
70
|
|
70
71
|
[project.optional-dependencies]
|
72
|
+
torch = [
|
73
|
+
"torch>=2.6.0",
|
74
|
+
"torchvision>=0.21.0",
|
75
|
+
"pytorch-triton-xpu>=3.2.0 ; sys_platform == 'linux'",
|
76
|
+
]
|
71
77
|
docling = [
|
72
|
-
"docling>=2.
|
78
|
+
"docling>=2.25.2",
|
73
79
|
]
|
74
80
|
mem0ai = [
|
75
81
|
"mem0ai>=0.1.55",
|
@@ -110,6 +116,22 @@ dev-dependencies = [
|
|
110
116
|
"pillow>=10.4.0",
|
111
117
|
]
|
112
118
|
|
119
|
+
[tool.uv.sources]
|
120
|
+
torch = [
|
121
|
+
{ index = "pytorch-xpu", marker = "sys_platform == 'win32' or sys_platform == 'linux'" },
|
122
|
+
]
|
123
|
+
torchvision = [
|
124
|
+
{ index = "pytorch-xpu", marker = "sys_platform == 'win32' or sys_platform == 'linux'" },
|
125
|
+
]
|
126
|
+
pytorch-triton-xpu = [
|
127
|
+
{ index = "pytorch-xpu", marker = "sys_platform == 'linux'" },
|
128
|
+
]
|
129
|
+
|
130
|
+
[[tool.uv.index]]
|
131
|
+
name = "pytorch-xpu"
|
132
|
+
url = "https://download.pytorch.org/whl/xpu"
|
133
|
+
explicit = true
|
134
|
+
|
113
135
|
[tool.uv.workspace]
|
114
136
|
members = ["Kuriko", "krik8235", "Kuriko IWAI"]
|
115
137
|
|