versionhq 1.1.12.3__tar.gz → 1.1.12.4__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 (121) hide show
  1. versionhq-1.1.12.4/.github/workflows/deploy_docs.yml +38 -0
  2. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.gitignore +3 -2
  3. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.pre-commit-config.yaml +1 -0
  4. versionhq-1.1.12.4/CNAME +1 -0
  5. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/PKG-INFO +33 -17
  6. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/README.md +31 -15
  7. versionhq-1.1.12.4/docs/CNAME +1 -0
  8. versionhq-1.1.12.4/docs/_logos/favicon.ico +0 -0
  9. versionhq-1.1.12.4/docs/_logos/logo192.png +0 -0
  10. versionhq-1.1.12.4/docs/core/Agent.md +526 -0
  11. versionhq-1.1.12.4/docs/index.md +388 -0
  12. versionhq-1.1.12.4/docs/quickstart.md +73 -0
  13. versionhq-1.1.12.4/docs/stylesheets/main.css +26 -0
  14. versionhq-1.1.12.4/mkdocs.yml +148 -0
  15. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/pyproject.toml +7 -3
  16. versionhq-1.1.12.4/requirements.txt +27 -0
  17. versionhq-1.1.12.4/runtime.txt +2 -0
  18. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/__init__.py +1 -1
  19. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/model.py +47 -23
  20. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/llm/llm_vars.py +1 -1
  21. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/llm/model.py +3 -1
  22. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/model.py +1 -1
  23. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq.egg-info/PKG-INFO +33 -17
  24. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq.egg-info/SOURCES.txt +10 -0
  25. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/agent/agent_test.py +17 -10
  26. versionhq-1.1.12.4/tests/doc_test.py +200 -0
  27. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/task/task_test.py +13 -12
  28. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/uv.lock +287 -577
  29. versionhq-1.1.12.3/requirements.txt +0 -465
  30. versionhq-1.1.12.3/runtime.txt +0 -1
  31. versionhq-1.1.12.3/tests/doc_test.py +0 -16
  32. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.github/workflows/publish.yml +0 -0
  33. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.github/workflows/publish_testpypi.yml +0 -0
  34. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.github/workflows/run_tests.yml +0 -0
  35. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.github/workflows/security_check.yml +0 -0
  36. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/.python-version +0 -0
  37. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/LICENSE +0 -0
  38. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/SECURITY.md +0 -0
  39. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/db/preprocess.py +0 -0
  40. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/requirements-dev.txt +0 -0
  41. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/setup.cfg +0 -0
  42. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/_utils/__init__.py +0 -0
  43. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/_utils/i18n.py +0 -0
  44. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/_utils/logger.py +0 -0
  45. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/_utils/process_config.py +0 -0
  46. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/_utils/usage_metrics.py +0 -0
  47. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/_utils/vars.py +0 -0
  48. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/TEMPLATES/Backstory.py +0 -0
  49. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/TEMPLATES/__init__.py +0 -0
  50. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/__init__.py +0 -0
  51. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/inhouse_agents.py +0 -0
  52. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/parser.py +0 -0
  53. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/agent/rpm_controller.py +0 -0
  54. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/cli/__init__.py +0 -0
  55. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/__init__.py +0 -0
  56. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/customer/__init__.py +0 -0
  57. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/customer/model.py +0 -0
  58. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/product/__init__.py +0 -0
  59. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/product/model.py +0 -0
  60. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/workflow/__init__.py +0 -0
  61. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/clients/workflow/model.py +0 -0
  62. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/__init__.py +0 -0
  63. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/_utils.py +0 -0
  64. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/embedding.py +0 -0
  65. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/model.py +0 -0
  66. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/source.py +0 -0
  67. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/source_docling.py +0 -0
  68. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/knowledge/storage.py +0 -0
  69. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/llm/__init__.py +0 -0
  70. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/memory/__init__.py +0 -0
  71. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/memory/contextual_memory.py +0 -0
  72. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/memory/model.py +0 -0
  73. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/__init__.py +0 -0
  74. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/base.py +0 -0
  75. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/ltm_sqlite_storage.py +0 -0
  76. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/mem0_storage.py +0 -0
  77. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/rag_storage.py +0 -0
  78. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/task_output_storage.py +0 -0
  79. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/storage/utils.py +0 -0
  80. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/TEMPLATES/Description.py +0 -0
  81. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/__init__.py +0 -0
  82. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/evaluate.py +0 -0
  83. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/formation.py +0 -0
  84. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/formatter.py +0 -0
  85. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/log_handler.py +0 -0
  86. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/task/structured_response.py +0 -0
  87. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/team/__init__.py +0 -0
  88. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/team/model.py +0 -0
  89. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/team/team_planner.py +0 -0
  90. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/__init__.py +0 -0
  91. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/cache_handler.py +0 -0
  92. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/composio_tool.py +0 -0
  93. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/composio_tool_vars.py +0 -0
  94. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/decorator.py +0 -0
  95. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/model.py +0 -0
  96. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq/tool/tool_handler.py +0 -0
  97. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq.egg-info/dependency_links.txt +0 -0
  98. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq.egg-info/requires.txt +0 -0
  99. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/src/versionhq.egg-info/top_level.txt +0 -0
  100. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/__init__.py +0 -0
  101. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/agent/__init__.py +0 -0
  102. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/cli/__init__.py +0 -0
  103. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/clients/customer_test.py +0 -0
  104. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/clients/product_test.py +0 -0
  105. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/clients/workflow_test.py +0 -0
  106. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/conftest.py +0 -0
  107. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/knowledge/__init__.py +0 -0
  108. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/knowledge/knowledge_test.py +0 -0
  109. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/knowledge/mock_report_compressed.pdf +0 -0
  110. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/llm/__init__.py +0 -0
  111. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/llm/llm_test.py +0 -0
  112. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/memory/__init__.py +0 -0
  113. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/memory/memory_test.py +0 -0
  114. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/task/__init__.py +0 -0
  115. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/task/llm_connection_test.py +0 -0
  116. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/team/Prompts/Demo_test.py +0 -0
  117. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/team/__init__.py +0 -0
  118. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/team/team_test.py +0 -0
  119. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/tool/__init__.py +0 -0
  120. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/tool/composio_test.py +0 -0
  121. {versionhq-1.1.12.3 → versionhq-1.1.12.4}/tests/tool/tool_test.py +0 -0
@@ -0,0 +1,38 @@
1
+ name: Deploy Docs
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+ permissions:
8
+ contents: write
9
+
10
+ jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
+
17
+ - name: Setup Python
18
+ uses: actions/setup-python@v5
19
+ with:
20
+ python-version: '3.12'
21
+
22
+ - name: Setup cache
23
+ run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
24
+ uses: actions/cache@v4
25
+ with:
26
+ key: mkdocs-material-${{ env.cache_id }}
27
+ path: .cache
28
+ restore-keys: |
29
+ mkdocs-material-
30
+
31
+ - name: Install Requirements
32
+ run: |
33
+ pip install mkdocs-material mkdocs-material-extensions pillow
34
+ env:
35
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
36
+
37
+ - name: Build and deploy MkDocs
38
+ run: mkdocs gh-deploy --force
@@ -5,8 +5,8 @@ entity_memory.py
5
5
 
6
6
  train.py
7
7
 
8
- mkdocs.yml
9
- docs/
8
+ # mkdocs.yml
9
+ # docs/
10
10
 
11
11
  dist/
12
12
  lib/
@@ -23,6 +23,7 @@ temp/*
23
23
  .vscode/*
24
24
  assets/*
25
25
  memo.txt
26
+ site/
26
27
 
27
28
  __pycache__
28
29
  .ruff_cache/
@@ -41,3 +41,4 @@ repos:
41
41
  rev: v2.2.0
42
42
  hooks:
43
43
  - id: doctoc
44
+ files: README.md
@@ -0,0 +1 @@
1
+ docs.versi0n.io
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: versionhq
3
- Version: 1.1.12.3
3
+ Version: 1.1.12.4
4
4
  Summary: An agentic orchestration framework for multi-agent system that shares memory, knowledge base, and RAG tools.
5
5
  Author-email: Kuriko Iwai <kuriko@versi0n.io>
6
6
  License: MIT License
@@ -26,7 +26,7 @@ License: MIT License
26
26
  SOFTWARE.
27
27
 
28
28
  Project-URL: Homepage, https://versi0n.io
29
- Project-URL: Documentation, https://chief-oxygen-8a2.notion.site/Documentation-17e923685cf98001a5fad5c4b2acd79b?pvs=73
29
+ Project-URL: Documentation, https://docs.versi0n.io
30
30
  Project-URL: Repository, https://github.com/versionHQ/multi-agent-system
31
31
  Project-URL: Issues, https://github.com/versionHQ/multi-agent-system/issues
32
32
  Keywords: orchestration framework,orchestration,ai agent,multi-agent system,RAG,agent,agentic orchestration,llm
@@ -91,7 +91,7 @@ Agentic orchestration framework to deploy agent network and handle complex task
91
91
  - [PyPI](https://pypi.org/project/versionhq/)
92
92
  - [Github (LLM orchestration framework)](https://github.com/versionHQ/multi-agent-system)
93
93
  - [Use case](https://versi0n.io/) / [Quick demo](https://res.cloudinary.com/dfeirxlea/video/upload/v1737732977/pj_m_home/pnsyh5mfvmilwgt0eusa.mov)
94
- - [Documentation](https://chief-oxygen-8a2.notion.site/Documentation-17e923685cf98001a5fad5c4b2acd79b?pvs=4) *Some components are under review.
94
+ - [Docs](https://docs.versi0n.io)
95
95
 
96
96
 
97
97
  <hr />
@@ -110,7 +110,9 @@ Agentic orchestration framework to deploy agent network and handle complex task
110
110
  - [Technologies Used](#technologies-used)
111
111
  - [Project Structure](#project-structure)
112
112
  - [Setup](#setup)
113
+ - [Set up a project](#set-up-a-project)
113
114
  - [Contributing](#contributing)
115
+ - [Documentation](#documentation)
114
116
  - [Customizing AI Agents](#customizing-ai-agents)
115
117
  - [Modifying RAG Functionality](#modifying-rag-functionality)
116
118
  - [Package Management with uv](#package-management-with-uv)
@@ -124,7 +126,7 @@ Agentic orchestration framework to deploy agent network and handle complex task
124
126
 
125
127
  ## Key Features
126
128
 
127
- `versionhq` is a Python framework that can generate agent networks for complex task automation without human interaction.
129
+ `versionhq` is a Python framework for agent networks that handle complex task automation without human interaction.
128
130
 
129
131
  Agents are model-agnostic, and will improve task output, while oprimizing token cost and job latency, by sharing their memory, knowledge base, and RAG tools with other agents in the network.
130
132
 
@@ -138,7 +140,7 @@ You can specify a desired formation or allow the agents to determine it autonomo
138
140
 
139
141
  | | **Solo Agent** | **Supervising** | **Network** | **Random** |
140
142
  | :--- | :--- | :--- | :--- | :--- |
141
- | **Formation** | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893140/pj_m_agents/tglrxoiuv7kk7nzvpe1z.jpg" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893141/pj_m_agents/hxngdvnn5b5qdxo0ayl5.jpg" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893142/pj_m_agents/kyc6neg8m6keyizszcpi.jpg" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893139/pj_m_agents/hzpchlcpnpwxwaapu1hr.jpg" alt="solo" width="200"> |
143
+ | **Formation** | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/rbgxttfoeqqis1ettlfz.png" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/zhungor3elxzer5dum10.png" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/dnusl7iy7kiwkxwlpmg8.png" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/sndpczatfzbrosxz9ama.png" alt="solo" width="200"> |
142
144
  | **Usage** | <ul><li>A single agent with tools, knowledge, and memory.</li><li>When self-learning mode is on - it will turn into **Random** formation.</li></ul> | <ul><li>Leader agent gives directions, while sharing its knowledge and memory.</li><li>Subordinates can be solo agents or networks.</li></ul> | <ul><li>Share tasks, knowledge, and memory among network members.</li></ul> | <ul><li>A single agent handles tasks, asking help from other agents without sharing its memory or knowledge.</li></ul> |
143
145
  | **Use case** | An email agent drafts promo message for the given audience. | The leader agent strategizes an outbound campaign plan and assigns components such as media mix or message creation to subordinate agents. | An email agent and social media agent share the product knowledge and deploy multi-channel outbound campaign. | 1. An email agent drafts promo message for the given audience, asking insights on tones from other email agents which oversee other clusters. 2. An agent calls the external agent to deploy the campaign. |
144
146
 
@@ -306,19 +308,24 @@ src/
306
308
 
307
309
  ## Setup
308
310
 
311
+
312
+
313
+ ## Set up a project
314
+
309
315
  1. Install `uv` package manager:
310
316
 
311
- For MacOS:
317
+ For MacOS:
312
318
 
313
- ```
314
- brew install uv
315
- ```
319
+ ```
320
+ brew install uv
321
+ ```
316
322
 
317
- For Ubuntu/Debian:
323
+ For Ubuntu/Debian:
324
+
325
+ ```
326
+ sudo apt-get install uv
327
+ ```
318
328
 
319
- ```
320
- sudo apt-get install uv
321
- ```
322
329
 
323
330
  2. Install dependencies:
324
331
  ```
@@ -340,11 +347,11 @@ src/
340
347
  3. Set up environment variables:
341
348
  Create a `.env` file in the project root and add the following:
342
349
  ```
343
- OPENAI_API_KEY=your-openai-api-key
344
350
  LITELLM_API_KEY=your-litellm-api-key
345
- UPSTAGE_API_KEY=your-upstage-api-key
351
+ OPENAI_API_KEY=your-openai-api-key
346
352
  COMPOSIO_API_KEY=your-composio-api-key
347
353
  COMPOSIO_CLI_KEY=your-composio-cli-key
354
+ [LLM_INTERFACE_PROVIDER_OF_YOUR_CHOICE]_API_KEY=your-api-key
348
355
  ```
349
356
 
350
357
  <hr />
@@ -378,16 +385,25 @@ src/
378
385
  **Optional**
379
386
  * Flag with `#! REFINEME` for any improvements needed and `#! FIXME` for any errors.
380
387
 
381
- * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
388
+ <!-- * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
382
389
  ```
383
390
  npm i
384
391
  npm start
385
392
  ```
386
- The frontend will be available at `http://localhost:3000`.
393
+ The frontend will be available at `http://localhost:3000`. -->
387
394
 
388
395
  * `production` use case is available at `https://versi0n.io`. Currently, we are running alpha test.
389
396
 
390
397
 
398
+ ### Documentation
399
+ * To edit the documentation, see `docs` repository and edit the respective component.
400
+
401
+ * We use `mkdocs` to update the docs. You can run the doc locally at http://127.0.0.1:8000/:
402
+
403
+ ```
404
+ uv run python3 -m mkdocs serve --clean
405
+ ```
406
+
391
407
 
392
408
  ### Customizing AI Agents
393
409
 
@@ -14,7 +14,7 @@ Agentic orchestration framework to deploy agent network and handle complex task
14
14
  - [PyPI](https://pypi.org/project/versionhq/)
15
15
  - [Github (LLM orchestration framework)](https://github.com/versionHQ/multi-agent-system)
16
16
  - [Use case](https://versi0n.io/) / [Quick demo](https://res.cloudinary.com/dfeirxlea/video/upload/v1737732977/pj_m_home/pnsyh5mfvmilwgt0eusa.mov)
17
- - [Documentation](https://chief-oxygen-8a2.notion.site/Documentation-17e923685cf98001a5fad5c4b2acd79b?pvs=4) *Some components are under review.
17
+ - [Docs](https://docs.versi0n.io)
18
18
 
19
19
 
20
20
  <hr />
@@ -33,7 +33,9 @@ Agentic orchestration framework to deploy agent network and handle complex task
33
33
  - [Technologies Used](#technologies-used)
34
34
  - [Project Structure](#project-structure)
35
35
  - [Setup](#setup)
36
+ - [Set up a project](#set-up-a-project)
36
37
  - [Contributing](#contributing)
38
+ - [Documentation](#documentation)
37
39
  - [Customizing AI Agents](#customizing-ai-agents)
38
40
  - [Modifying RAG Functionality](#modifying-rag-functionality)
39
41
  - [Package Management with uv](#package-management-with-uv)
@@ -47,7 +49,7 @@ Agentic orchestration framework to deploy agent network and handle complex task
47
49
 
48
50
  ## Key Features
49
51
 
50
- `versionhq` is a Python framework that can generate agent networks for complex task automation without human interaction.
52
+ `versionhq` is a Python framework for agent networks that handle complex task automation without human interaction.
51
53
 
52
54
  Agents are model-agnostic, and will improve task output, while oprimizing token cost and job latency, by sharing their memory, knowledge base, and RAG tools with other agents in the network.
53
55
 
@@ -61,7 +63,7 @@ You can specify a desired formation or allow the agents to determine it autonomo
61
63
 
62
64
  | | **Solo Agent** | **Supervising** | **Network** | **Random** |
63
65
  | :--- | :--- | :--- | :--- | :--- |
64
- | **Formation** | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893140/pj_m_agents/tglrxoiuv7kk7nzvpe1z.jpg" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893141/pj_m_agents/hxngdvnn5b5qdxo0ayl5.jpg" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893142/pj_m_agents/kyc6neg8m6keyizszcpi.jpg" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1737893139/pj_m_agents/hzpchlcpnpwxwaapu1hr.jpg" alt="solo" width="200"> |
66
+ | **Formation** | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/rbgxttfoeqqis1ettlfz.png" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/zhungor3elxzer5dum10.png" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/dnusl7iy7kiwkxwlpmg8.png" alt="solo" width="200"> | <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1738818211/pj_m_agents/sndpczatfzbrosxz9ama.png" alt="solo" width="200"> |
65
67
  | **Usage** | <ul><li>A single agent with tools, knowledge, and memory.</li><li>When self-learning mode is on - it will turn into **Random** formation.</li></ul> | <ul><li>Leader agent gives directions, while sharing its knowledge and memory.</li><li>Subordinates can be solo agents or networks.</li></ul> | <ul><li>Share tasks, knowledge, and memory among network members.</li></ul> | <ul><li>A single agent handles tasks, asking help from other agents without sharing its memory or knowledge.</li></ul> |
66
68
  | **Use case** | An email agent drafts promo message for the given audience. | The leader agent strategizes an outbound campaign plan and assigns components such as media mix or message creation to subordinate agents. | An email agent and social media agent share the product knowledge and deploy multi-channel outbound campaign. | 1. An email agent drafts promo message for the given audience, asking insights on tones from other email agents which oversee other clusters. 2. An agent calls the external agent to deploy the campaign. |
67
69
 
@@ -229,19 +231,24 @@ src/
229
231
 
230
232
  ## Setup
231
233
 
234
+
235
+
236
+ ## Set up a project
237
+
232
238
  1. Install `uv` package manager:
233
239
 
234
- For MacOS:
240
+ For MacOS:
235
241
 
236
- ```
237
- brew install uv
238
- ```
242
+ ```
243
+ brew install uv
244
+ ```
239
245
 
240
- For Ubuntu/Debian:
246
+ For Ubuntu/Debian:
247
+
248
+ ```
249
+ sudo apt-get install uv
250
+ ```
241
251
 
242
- ```
243
- sudo apt-get install uv
244
- ```
245
252
 
246
253
  2. Install dependencies:
247
254
  ```
@@ -263,11 +270,11 @@ src/
263
270
  3. Set up environment variables:
264
271
  Create a `.env` file in the project root and add the following:
265
272
  ```
266
- OPENAI_API_KEY=your-openai-api-key
267
273
  LITELLM_API_KEY=your-litellm-api-key
268
- UPSTAGE_API_KEY=your-upstage-api-key
274
+ OPENAI_API_KEY=your-openai-api-key
269
275
  COMPOSIO_API_KEY=your-composio-api-key
270
276
  COMPOSIO_CLI_KEY=your-composio-cli-key
277
+ [LLM_INTERFACE_PROVIDER_OF_YOUR_CHOICE]_API_KEY=your-api-key
271
278
  ```
272
279
 
273
280
  <hr />
@@ -301,16 +308,25 @@ src/
301
308
  **Optional**
302
309
  * Flag with `#! REFINEME` for any improvements needed and `#! FIXME` for any errors.
303
310
 
304
- * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
311
+ <!-- * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
305
312
  ```
306
313
  npm i
307
314
  npm start
308
315
  ```
309
- The frontend will be available at `http://localhost:3000`.
316
+ The frontend will be available at `http://localhost:3000`. -->
310
317
 
311
318
  * `production` use case is available at `https://versi0n.io`. Currently, we are running alpha test.
312
319
 
313
320
 
321
+ ### Documentation
322
+ * To edit the documentation, see `docs` repository and edit the respective component.
323
+
324
+ * We use `mkdocs` to update the docs. You can run the doc locally at http://127.0.0.1:8000/:
325
+
326
+ ```
327
+ uv run python3 -m mkdocs serve --clean
328
+ ```
329
+
314
330
 
315
331
  ### Customizing AI Agents
316
332
 
@@ -0,0 +1 @@
1
+ docs.versi0n.io