versionhq 1.1.6.3__tar.gz → 1.1.6.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 (61) hide show
  1. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/PKG-INFO +58 -41
  2. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/README.md +57 -40
  3. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/pyproject.toml +1 -1
  4. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/__init__.py +1 -1
  5. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/agent/model.py +1 -1
  6. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/llm/model.py +1 -0
  7. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq.egg-info/PKG-INFO +58 -41
  8. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq.egg-info/SOURCES.txt +0 -1
  9. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/task/sync_test.py +1 -1
  10. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/team/kickoff_test.py +2 -2
  11. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/uv.lock +1 -1
  12. versionhq-1.1.6.3/Procfile +0 -1
  13. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/.github/workflows/publish.yml +0 -0
  14. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/.github/workflows/publish_testpypi.yml +0 -0
  15. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/.github/workflows/security_check.yml +0 -0
  16. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/.gitignore +0 -0
  17. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/.pre-commit-config.yaml +0 -0
  18. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/.python-version +0 -0
  19. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/LICENSE +0 -0
  20. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/SECURITY.md +0 -0
  21. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/db/preprocess.py +0 -0
  22. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/requirements.txt +0 -0
  23. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/runtime.txt +0 -0
  24. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/setup.cfg +0 -0
  25. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/__init__.py +0 -0
  26. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/cache_handler.py +0 -0
  27. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/i18n.py +0 -0
  28. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/logger.py +0 -0
  29. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/process_config.py +0 -0
  30. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/rpm_controller.py +0 -0
  31. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/_utils/usage_metrics.py +0 -0
  32. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/agent/__init__.py +0 -0
  33. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/agent/parser.py +0 -0
  34. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/cli/__init__.py +0 -0
  35. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/__init__.py +0 -0
  36. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/customer/__init__.py +0 -0
  37. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/customer/model.py +0 -0
  38. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/product/__init__.py +0 -0
  39. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/product/model.py +0 -0
  40. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/workflow/__init__.py +0 -0
  41. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/clients/workflow/model.py +0 -0
  42. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/llm/__init__.py +0 -0
  43. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/llm/llm_vars.py +0 -0
  44. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/task/__init__.py +0 -0
  45. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/task/formatter.py +0 -0
  46. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/task/model.py +0 -0
  47. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/team/__init__.py +0 -0
  48. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/team/model.py +0 -0
  49. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/team/team_planner.py +0 -0
  50. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/tool/__init__.py +0 -0
  51. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/tool/decorator.py +0 -0
  52. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/tool/model.py +0 -0
  53. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq/tool/tool_handler.py +0 -0
  54. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq.egg-info/dependency_links.txt +0 -0
  55. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq.egg-info/requires.txt +0 -0
  56. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/src/versionhq.egg-info/top_level.txt +0 -0
  57. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/__init__.py +0 -0
  58. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/cli/__init__.py +0 -0
  59. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/task/__init__.py +0 -0
  60. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/team/Prompts/Demo_test.py +0 -0
  61. {versionhq-1.1.6.3 → versionhq-1.1.6.4}/tests/team/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: versionhq
3
- Version: 1.1.6.3
3
+ Version: 1.1.6.4
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
@@ -52,7 +52,8 @@ Requires-Dist: wheel>=0.45.1
52
52
 
53
53
  # Overview
54
54
 
55
- ![python ver](https://img.shields.io/badge/Python-3.13.1-blue) ![pyenv ver](https://img.shields.io/badge/pyenv-2.4.23-orange)
55
+ ![MIT license](https://img.shields.io/badge/License-MIT-green) ![PyPi](https://img.shields.io/badge/pypi-v1.1.6.3-blue)
56
+ ![python ver](https://img.shields.io/badge/Python-3.13.1-purple) ![pyenv ver](https://img.shields.io/badge/pyenv-2.4.23-orange)
56
57
 
57
58
 
58
59
  An LLM orchestration frameworks for multi-agent systems with RAG to autopilot outbound workflows.
@@ -64,10 +65,10 @@ Messaging workflows are created at individual level, and will be deployed on thi
64
65
 
65
66
  **Visit:**
66
67
 
67
- - Marketing: [Landing page](https://home.versi0n.io)
68
- - Client app: [Production](https://versi0n.io/)
69
- - Backend: [Orchestration + multi-agent RAG system](https://github.com/versionHQ/multi-agent-system)
70
- - Test CI: [Test client app (React)](https://github.com/versionHQ/test-client-app)
68
+ - [Landing page](https://home.versi0n.io)
69
+ - [Client app](https://versi0n.io/)
70
+ - [Orchestration frameworks](https://github.com/versionHQ/multi-agent-system)
71
+ - [Test client app](https://github.com/versionHQ/test-client-app)
71
72
 
72
73
 
73
74
  ## Mindmap
@@ -75,7 +76,7 @@ Messaging workflows are created at individual level, and will be deployed on thi
75
76
  LLM-powered `agent`s and `team`s use `tool`s and their own knowledge to complete the `task` given by the client or the system.
76
77
 
77
78
  <p align="center">
78
- <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1733556715/pj_m_home/urwte15at3h0dr8mdlyo.png" alt="mindmap" width="1000">
79
+ <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1733556715/pj_m_home/urwte15at3h0dr8mdlyo.png" alt="mindmap" width="400">
79
80
  </p>
80
81
 
81
82
  <hr />
@@ -89,8 +90,7 @@ LLM-powered `agent`s and `team`s use `tool`s and their own knowledge to complete
89
90
  - [Project Structure](#project-structure)
90
91
  - [Setup](#setup)
91
92
  - [Usage](#usage)
92
- - [Installing as a Package Module (Alpha)](#installing-as-a-package-module-alpha)
93
- - [Contributing & Customizing](#contributing--customizing)
93
+ - [Contributing](#contributing)
94
94
  - [Customizing AI Agents](#customizing-ai-agents)
95
95
  - [Modifying RAG Functionality](#modifying-rag-functionality)
96
96
  - [Package Management with uv](#package-management-with-uv)
@@ -122,6 +122,8 @@ Multiple `agents` can form a `team` to complete complex tasks together.
122
122
  - Responsible `agents` or `teams` autopilot executing and refining the messaging workflow.
123
123
 
124
124
 
125
+ <hr />
126
+
125
127
  ## Technologies Used
126
128
  **Schema, Database, Data Validation**
127
129
  - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python
@@ -172,6 +174,8 @@ src/
172
174
 
173
175
  ```
174
176
 
177
+ <hr />
178
+
175
179
  ## Setup
176
180
 
177
181
  1. Install the `uv` package manager:
@@ -204,53 +208,63 @@ src/
204
208
  COMPOSIO_CLI_KEY=your-composio-cli-key
205
209
  ```
206
210
 
207
- ## Usage
211
+ <hr />
208
212
 
209
- 1. Add features.
213
+ ## Usage
210
214
 
211
- 2. Test the features using the `tests` directory.
215
+ 1. Install `versionhq` package:
216
+ ```
217
+ uv pip install versionhq
218
+ ```
212
219
 
213
- - Add a file to the `tests` directory.
214
- - Run a test.
220
+ 2. You can use the `versionhq` module in your Python app.
215
221
  ```
216
- uv run <your file name>
222
+ from versionhq.agent.model import Agent
223
+ agent = Agent(llm="your-llm", ...)
217
224
  ```
218
- * All the `.py` files' names in the `tests` have to be ended with `_test.py`.
219
225
 
226
+ For more details:
220
227
 
221
- 3. Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
222
- ```
223
- npm i
224
- npm start
225
- ```
226
- The frontend will be available at `http://localhost:3000`.
228
+ [PyPi package](https://pypi.org/project/versionhq/)
227
229
 
228
- 4. `production` is available at `https://versi0n.io`. Currently, we are running beta.
230
+ <hr />
229
231
 
232
+ ## Contributing
230
233
 
231
- ## Installing as a Package Module (Alpha)
234
+ 1. Fork the repository
232
235
 
233
- 1. Open another terminal, set your repository as root, and run
234
- ```
235
- uv pip install git+https://github.com/versionHQ/multi-agent-system.git#egg=versionhq
236
- ```
236
+ 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
237
237
 
238
- 2. You can use the `versionhq` module in your Python app.
239
- ```
240
- from versionhq.agent.model import Agent
241
- agent = Agent(llm="your-llm"...)
242
- ```
238
+ 3. Create amazing features
243
239
 
244
- ## Contributing & Customizing
240
+ 4. Test the features using the `tests` directory.
245
241
 
246
- 1. Fork the repository
247
- 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
248
- 3. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
249
- 4. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
250
- 5. Push to the branch (`git push origin feature/your-amazing-feature`)
251
- 6. Open a pull request
242
+ - Add a file to the `tests` directory.
243
+ - Run a test.
244
+ ```
245
+ uv run <your file name>
246
+ ```
247
+
248
+ * All the `.py` files' names in the `tests` have to be ended with `_test.py`.
249
+
250
+ 5. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
251
+ 6. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
252
+ 7. Push to the branch (`git push origin feature/your-amazing-feature`)
253
+ 8. Open a pull request
254
+
255
+
256
+ **Optional**
257
+ * Flag with `#! REFINEME` for any improvements needed and `#! FIXME` for any errors.
258
+
259
+ * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
260
+ ```
261
+ npm i
262
+ npm start
263
+ ```
264
+ The frontend will be available at `http://localhost:3000`.
265
+
266
+ * `production` is available at `https://versi0n.io`. Currently, we are running alpha test.
252
267
 
253
- 0. Flag with `#! REFINEME` for any improvements and `#! FIXME` for any errors.
254
268
 
255
269
 
256
270
  ### Customizing AI Agents
@@ -299,6 +313,8 @@ Pre-commit hooks help maintain code quality by running checks for formatting, li
299
313
  git commit --no-verify -m "your-commit-message"
300
314
  ```
301
315
 
316
+ <hr />
317
+
302
318
  ## Trouble Shooting
303
319
 
304
320
  Common issues and solutions:
@@ -309,6 +325,7 @@ Common issues and solutions:
309
325
  - Issues related to the AI agents or RAG system: Check the `output.log` file for detailed error messages and stack traces.
310
326
  - Issues related to `Python quit unexpectedly`: Check [this stackoverflow article](https://stackoverflow.com/questions/59888499/macos-catalina-python-quit-unexpectedly-error).
311
327
 
328
+ <hr />
312
329
 
313
330
  ## Frequently Asked Questions (FAQ)
314
331
  **Q. Where can I see if the agent is working?**
@@ -1,6 +1,7 @@
1
1
  # Overview
2
2
 
3
- ![python ver](https://img.shields.io/badge/Python-3.13.1-blue) ![pyenv ver](https://img.shields.io/badge/pyenv-2.4.23-orange)
3
+ ![MIT license](https://img.shields.io/badge/License-MIT-green) ![PyPi](https://img.shields.io/badge/pypi-v1.1.6.3-blue)
4
+ ![python ver](https://img.shields.io/badge/Python-3.13.1-purple) ![pyenv ver](https://img.shields.io/badge/pyenv-2.4.23-orange)
4
5
 
5
6
 
6
7
  An LLM orchestration frameworks for multi-agent systems with RAG to autopilot outbound workflows.
@@ -12,10 +13,10 @@ Messaging workflows are created at individual level, and will be deployed on thi
12
13
 
13
14
  **Visit:**
14
15
 
15
- - Marketing: [Landing page](https://home.versi0n.io)
16
- - Client app: [Production](https://versi0n.io/)
17
- - Backend: [Orchestration + multi-agent RAG system](https://github.com/versionHQ/multi-agent-system)
18
- - Test CI: [Test client app (React)](https://github.com/versionHQ/test-client-app)
16
+ - [Landing page](https://home.versi0n.io)
17
+ - [Client app](https://versi0n.io/)
18
+ - [Orchestration frameworks](https://github.com/versionHQ/multi-agent-system)
19
+ - [Test client app](https://github.com/versionHQ/test-client-app)
19
20
 
20
21
 
21
22
  ## Mindmap
@@ -23,7 +24,7 @@ Messaging workflows are created at individual level, and will be deployed on thi
23
24
  LLM-powered `agent`s and `team`s use `tool`s and their own knowledge to complete the `task` given by the client or the system.
24
25
 
25
26
  <p align="center">
26
- <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1733556715/pj_m_home/urwte15at3h0dr8mdlyo.png" alt="mindmap" width="1000">
27
+ <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1733556715/pj_m_home/urwte15at3h0dr8mdlyo.png" alt="mindmap" width="400">
27
28
  </p>
28
29
 
29
30
  <hr />
@@ -37,8 +38,7 @@ LLM-powered `agent`s and `team`s use `tool`s and their own knowledge to complete
37
38
  - [Project Structure](#project-structure)
38
39
  - [Setup](#setup)
39
40
  - [Usage](#usage)
40
- - [Installing as a Package Module (Alpha)](#installing-as-a-package-module-alpha)
41
- - [Contributing & Customizing](#contributing--customizing)
41
+ - [Contributing](#contributing)
42
42
  - [Customizing AI Agents](#customizing-ai-agents)
43
43
  - [Modifying RAG Functionality](#modifying-rag-functionality)
44
44
  - [Package Management with uv](#package-management-with-uv)
@@ -70,6 +70,8 @@ Multiple `agents` can form a `team` to complete complex tasks together.
70
70
  - Responsible `agents` or `teams` autopilot executing and refining the messaging workflow.
71
71
 
72
72
 
73
+ <hr />
74
+
73
75
  ## Technologies Used
74
76
  **Schema, Database, Data Validation**
75
77
  - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python
@@ -120,6 +122,8 @@ src/
120
122
 
121
123
  ```
122
124
 
125
+ <hr />
126
+
123
127
  ## Setup
124
128
 
125
129
  1. Install the `uv` package manager:
@@ -152,53 +156,63 @@ src/
152
156
  COMPOSIO_CLI_KEY=your-composio-cli-key
153
157
  ```
154
158
 
155
- ## Usage
159
+ <hr />
156
160
 
157
- 1. Add features.
161
+ ## Usage
158
162
 
159
- 2. Test the features using the `tests` directory.
163
+ 1. Install `versionhq` package:
164
+ ```
165
+ uv pip install versionhq
166
+ ```
160
167
 
161
- - Add a file to the `tests` directory.
162
- - Run a test.
168
+ 2. You can use the `versionhq` module in your Python app.
163
169
  ```
164
- uv run <your file name>
170
+ from versionhq.agent.model import Agent
171
+ agent = Agent(llm="your-llm", ...)
165
172
  ```
166
- * All the `.py` files' names in the `tests` have to be ended with `_test.py`.
167
173
 
174
+ For more details:
168
175
 
169
- 3. Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
170
- ```
171
- npm i
172
- npm start
173
- ```
174
- The frontend will be available at `http://localhost:3000`.
176
+ [PyPi package](https://pypi.org/project/versionhq/)
175
177
 
176
- 4. `production` is available at `https://versi0n.io`. Currently, we are running beta.
178
+ <hr />
177
179
 
180
+ ## Contributing
178
181
 
179
- ## Installing as a Package Module (Alpha)
182
+ 1. Fork the repository
180
183
 
181
- 1. Open another terminal, set your repository as root, and run
182
- ```
183
- uv pip install git+https://github.com/versionHQ/multi-agent-system.git#egg=versionhq
184
- ```
184
+ 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
185
185
 
186
- 2. You can use the `versionhq` module in your Python app.
187
- ```
188
- from versionhq.agent.model import Agent
189
- agent = Agent(llm="your-llm"...)
190
- ```
186
+ 3. Create amazing features
191
187
 
192
- ## Contributing & Customizing
188
+ 4. Test the features using the `tests` directory.
193
189
 
194
- 1. Fork the repository
195
- 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
196
- 3. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
197
- 4. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
198
- 5. Push to the branch (`git push origin feature/your-amazing-feature`)
199
- 6. Open a pull request
190
+ - Add a file to the `tests` directory.
191
+ - Run a test.
192
+ ```
193
+ uv run <your file name>
194
+ ```
195
+
196
+ * All the `.py` files' names in the `tests` have to be ended with `_test.py`.
197
+
198
+ 5. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
199
+ 6. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
200
+ 7. Push to the branch (`git push origin feature/your-amazing-feature`)
201
+ 8. Open a pull request
202
+
203
+
204
+ **Optional**
205
+ * Flag with `#! REFINEME` for any improvements needed and `#! FIXME` for any errors.
206
+
207
+ * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
208
+ ```
209
+ npm i
210
+ npm start
211
+ ```
212
+ The frontend will be available at `http://localhost:3000`.
213
+
214
+ * `production` is available at `https://versi0n.io`. Currently, we are running alpha test.
200
215
 
201
- 0. Flag with `#! REFINEME` for any improvements and `#! FIXME` for any errors.
202
216
 
203
217
 
204
218
  ### Customizing AI Agents
@@ -247,6 +261,8 @@ Pre-commit hooks help maintain code quality by running checks for formatting, li
247
261
  git commit --no-verify -m "your-commit-message"
248
262
  ```
249
263
 
264
+ <hr />
265
+
250
266
  ## Trouble Shooting
251
267
 
252
268
  Common issues and solutions:
@@ -257,6 +273,7 @@ Common issues and solutions:
257
273
  - Issues related to the AI agents or RAG system: Check the `output.log` file for detailed error messages and stack traces.
258
274
  - Issues related to `Python quit unexpectedly`: Check [this stackoverflow article](https://stackoverflow.com/questions/59888499/macos-catalina-python-quit-unexpectedly-error).
259
275
 
276
+ <hr />
260
277
 
261
278
  ## Frequently Asked Questions (FAQ)
262
279
  **Q. Where can I see if the agent is working?**
@@ -15,7 +15,7 @@ exclude = ["test*", "__pycache__"]
15
15
 
16
16
  [project]
17
17
  name = "versionhq"
18
- version = "1.1.6.3"
18
+ version = "1.1.6.4"
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"
@@ -17,7 +17,7 @@ from versionhq.team.model import Team, TeamOutput
17
17
  from versionhq.tool.model import Tool
18
18
 
19
19
 
20
- __version__ = "1.1.6.3"
20
+ __version__ = "1.1.6.4"
21
21
  __all__ = [
22
22
  "Agent",
23
23
  "Customer",
@@ -204,7 +204,7 @@ class Agent(ABC, BaseModel):
204
204
 
205
205
  if isinstance(self.llm, LLM):
206
206
  self.llm.timeout = self.max_execution_time
207
- self.llm.max_token = self.max_tokens
207
+ self.llm.max_tokens = self.max_tokens
208
208
  self.llm.context_window_size = (
209
209
  self.llm.get_context_window_size()
210
210
  if self.respect_context_window == True
@@ -150,6 +150,7 @@ class LLM:
150
150
  self.kwargs = kwargs
151
151
 
152
152
  litellm.drop_params = True
153
+ litellm.set_verbose=True
153
154
  self.set_callbacks(callbacks)
154
155
 
155
156
  def call(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: versionhq
3
- Version: 1.1.6.3
3
+ Version: 1.1.6.4
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
@@ -52,7 +52,8 @@ Requires-Dist: wheel>=0.45.1
52
52
 
53
53
  # Overview
54
54
 
55
- ![python ver](https://img.shields.io/badge/Python-3.13.1-blue) ![pyenv ver](https://img.shields.io/badge/pyenv-2.4.23-orange)
55
+ ![MIT license](https://img.shields.io/badge/License-MIT-green) ![PyPi](https://img.shields.io/badge/pypi-v1.1.6.3-blue)
56
+ ![python ver](https://img.shields.io/badge/Python-3.13.1-purple) ![pyenv ver](https://img.shields.io/badge/pyenv-2.4.23-orange)
56
57
 
57
58
 
58
59
  An LLM orchestration frameworks for multi-agent systems with RAG to autopilot outbound workflows.
@@ -64,10 +65,10 @@ Messaging workflows are created at individual level, and will be deployed on thi
64
65
 
65
66
  **Visit:**
66
67
 
67
- - Marketing: [Landing page](https://home.versi0n.io)
68
- - Client app: [Production](https://versi0n.io/)
69
- - Backend: [Orchestration + multi-agent RAG system](https://github.com/versionHQ/multi-agent-system)
70
- - Test CI: [Test client app (React)](https://github.com/versionHQ/test-client-app)
68
+ - [Landing page](https://home.versi0n.io)
69
+ - [Client app](https://versi0n.io/)
70
+ - [Orchestration frameworks](https://github.com/versionHQ/multi-agent-system)
71
+ - [Test client app](https://github.com/versionHQ/test-client-app)
71
72
 
72
73
 
73
74
  ## Mindmap
@@ -75,7 +76,7 @@ Messaging workflows are created at individual level, and will be deployed on thi
75
76
  LLM-powered `agent`s and `team`s use `tool`s and their own knowledge to complete the `task` given by the client or the system.
76
77
 
77
78
  <p align="center">
78
- <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1733556715/pj_m_home/urwte15at3h0dr8mdlyo.png" alt="mindmap" width="1000">
79
+ <img src="https://res.cloudinary.com/dfeirxlea/image/upload/v1733556715/pj_m_home/urwte15at3h0dr8mdlyo.png" alt="mindmap" width="400">
79
80
  </p>
80
81
 
81
82
  <hr />
@@ -89,8 +90,7 @@ LLM-powered `agent`s and `team`s use `tool`s and their own knowledge to complete
89
90
  - [Project Structure](#project-structure)
90
91
  - [Setup](#setup)
91
92
  - [Usage](#usage)
92
- - [Installing as a Package Module (Alpha)](#installing-as-a-package-module-alpha)
93
- - [Contributing & Customizing](#contributing--customizing)
93
+ - [Contributing](#contributing)
94
94
  - [Customizing AI Agents](#customizing-ai-agents)
95
95
  - [Modifying RAG Functionality](#modifying-rag-functionality)
96
96
  - [Package Management with uv](#package-management-with-uv)
@@ -122,6 +122,8 @@ Multiple `agents` can form a `team` to complete complex tasks together.
122
122
  - Responsible `agents` or `teams` autopilot executing and refining the messaging workflow.
123
123
 
124
124
 
125
+ <hr />
126
+
125
127
  ## Technologies Used
126
128
  **Schema, Database, Data Validation**
127
129
  - [Pydantic](https://docs.pydantic.dev/latest/): Data validation and serialization library for Python
@@ -172,6 +174,8 @@ src/
172
174
 
173
175
  ```
174
176
 
177
+ <hr />
178
+
175
179
  ## Setup
176
180
 
177
181
  1. Install the `uv` package manager:
@@ -204,53 +208,63 @@ src/
204
208
  COMPOSIO_CLI_KEY=your-composio-cli-key
205
209
  ```
206
210
 
207
- ## Usage
211
+ <hr />
208
212
 
209
- 1. Add features.
213
+ ## Usage
210
214
 
211
- 2. Test the features using the `tests` directory.
215
+ 1. Install `versionhq` package:
216
+ ```
217
+ uv pip install versionhq
218
+ ```
212
219
 
213
- - Add a file to the `tests` directory.
214
- - Run a test.
220
+ 2. You can use the `versionhq` module in your Python app.
215
221
  ```
216
- uv run <your file name>
222
+ from versionhq.agent.model import Agent
223
+ agent = Agent(llm="your-llm", ...)
217
224
  ```
218
- * All the `.py` files' names in the `tests` have to be ended with `_test.py`.
219
225
 
226
+ For more details:
220
227
 
221
- 3. Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
222
- ```
223
- npm i
224
- npm start
225
- ```
226
- The frontend will be available at `http://localhost:3000`.
228
+ [PyPi package](https://pypi.org/project/versionhq/)
227
229
 
228
- 4. `production` is available at `https://versi0n.io`. Currently, we are running beta.
230
+ <hr />
229
231
 
232
+ ## Contributing
230
233
 
231
- ## Installing as a Package Module (Alpha)
234
+ 1. Fork the repository
232
235
 
233
- 1. Open another terminal, set your repository as root, and run
234
- ```
235
- uv pip install git+https://github.com/versionHQ/multi-agent-system.git#egg=versionhq
236
- ```
236
+ 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
237
237
 
238
- 2. You can use the `versionhq` module in your Python app.
239
- ```
240
- from versionhq.agent.model import Agent
241
- agent = Agent(llm="your-llm"...)
242
- ```
238
+ 3. Create amazing features
243
239
 
244
- ## Contributing & Customizing
240
+ 4. Test the features using the `tests` directory.
245
241
 
246
- 1. Fork the repository
247
- 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
248
- 3. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
249
- 4. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
250
- 5. Push to the branch (`git push origin feature/your-amazing-feature`)
251
- 6. Open a pull request
242
+ - Add a file to the `tests` directory.
243
+ - Run a test.
244
+ ```
245
+ uv run <your file name>
246
+ ```
247
+
248
+ * All the `.py` files' names in the `tests` have to be ended with `_test.py`.
249
+
250
+ 5. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
251
+ 6. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
252
+ 7. Push to the branch (`git push origin feature/your-amazing-feature`)
253
+ 8. Open a pull request
254
+
255
+
256
+ **Optional**
257
+ * Flag with `#! REFINEME` for any improvements needed and `#! FIXME` for any errors.
258
+
259
+ * Run a React demo app: [React demo app](https://github.com/versionHQ/test-client-app) to check it on the client endpoint.
260
+ ```
261
+ npm i
262
+ npm start
263
+ ```
264
+ The frontend will be available at `http://localhost:3000`.
265
+
266
+ * `production` is available at `https://versi0n.io`. Currently, we are running alpha test.
252
267
 
253
- 0. Flag with `#! REFINEME` for any improvements and `#! FIXME` for any errors.
254
268
 
255
269
 
256
270
  ### Customizing AI Agents
@@ -299,6 +313,8 @@ Pre-commit hooks help maintain code quality by running checks for formatting, li
299
313
  git commit --no-verify -m "your-commit-message"
300
314
  ```
301
315
 
316
+ <hr />
317
+
302
318
  ## Trouble Shooting
303
319
 
304
320
  Common issues and solutions:
@@ -309,6 +325,7 @@ Common issues and solutions:
309
325
  - Issues related to the AI agents or RAG system: Check the `output.log` file for detailed error messages and stack traces.
310
326
  - Issues related to `Python quit unexpectedly`: Check [this stackoverflow article](https://stackoverflow.com/questions/59888499/macos-catalina-python-quit-unexpectedly-error).
311
327
 
328
+ <hr />
312
329
 
313
330
  ## Frequently Asked Questions (FAQ)
314
331
  **Q. Where can I see if the agent is working?**
@@ -2,7 +2,6 @@
2
2
  .pre-commit-config.yaml
3
3
  .python-version
4
4
  LICENSE
5
- Procfile
6
5
  README.md
7
6
  SECURITY.md
8
7
  pyproject.toml
@@ -16,7 +16,7 @@ def sync_test():
16
16
  backstory="My amazing backstory",
17
17
  verbose=True,
18
18
  llm=MODEL_NAME,
19
- max_token=3000,
19
+ max_tokens=3000,
20
20
  )
21
21
  task = Task(
22
22
  description="Analyze the client's business model, target audience, and customer information and define the optimal cohort timeframe based on customer lifecycle and product usage patterns.",
@@ -20,7 +20,7 @@ def kickoff_test() -> Union[TeamOutput | Dict[str, Any]]:
20
20
  backstory="My amazing backstory",
21
21
  verbose=True,
22
22
  llm=MODEL_NAME,
23
- max_token=3000,
23
+ max_tokens=3000,
24
24
  )
25
25
 
26
26
  agent_b1 = Agent(
@@ -29,7 +29,7 @@ def kickoff_test() -> Union[TeamOutput | Dict[str, Any]]:
29
29
  backstory="My amazing backstory",
30
30
  verbose=True,
31
31
  llm=MODEL_NAME,
32
- max_token=3000,
32
+ max_tokens=3000,
33
33
  )
34
34
 
35
35
  task_1 = Task(
@@ -1652,7 +1652,7 @@ wheels = [
1652
1652
 
1653
1653
  [[package]]
1654
1654
  name = "versionhq"
1655
- version = "1.1.5"
1655
+ version = "1.1.6.3"
1656
1656
  source = { editable = "." }
1657
1657
  dependencies = [
1658
1658
  { name = "composio" },
@@ -1 +0,0 @@
1
- web: gunicorn --bind :$PORT app:app
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes