versionhq 1.1.9.13__py3-none-any.whl → 1.1.10.2__py3-none-any.whl

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.
@@ -1,8 +1,8 @@
1
1
  from typing import Optional, Any
2
2
  from pydantic import InstanceOf
3
3
 
4
- from versionhq.tool.model import ToolSet, InstructorToolSet
5
- from versionhq._utils.cache_handler import CacheHandler
4
+ from versionhq.tool.model import ToolSet
5
+ from versionhq.tool.cache_handler import CacheHandler, CacheTool
6
6
 
7
7
 
8
8
  class ToolHandler:
@@ -10,34 +10,26 @@ class ToolHandler:
10
10
  Record the tool usage by ToolSet instance with cache and error recording.
11
11
  """
12
12
 
13
- last_used_tool: InstanceOf[ToolSet] | InstanceOf[InstructorToolSet]
14
- cache: Optional[CacheHandler]
13
+ last_used_tool: InstanceOf[ToolSet]
14
+ cache: InstanceOf[CacheHandler] = CacheHandler()
15
15
  error: Optional[str]
16
16
  should_cache: bool
17
17
 
18
- def __init__(
19
- self,
20
- last_used_tool: InstanceOf[ToolSet] | InstanceOf[InstructorToolSet] = None,
21
- cache_handler: Optional[CacheHandler] = None,
22
- should_cache: bool = True
23
- ):
24
- self.cache = cache_handler
18
+ def __init__(self, last_used_tool: InstanceOf[ToolSet] = None, cache_handler: InstanceOf[CacheHandler] = None, should_cache: bool = True):
25
19
  self.last_used_tool = last_used_tool
20
+ self.cache = cache_handler if cache_handler else CacheHandler()
26
21
  self.should_cache = should_cache
27
22
 
28
23
 
29
- def record_last_tool_used(
30
- self, last_used_tool: InstanceOf[ToolSet] | InstanceOf[InstructorToolSet], output: str, should_cache: bool = True
31
- ) -> Any:
32
- from versionhq.tool.model import CacheTool
33
-
24
+ def record_last_tool_used(self, last_used_tool: InstanceOf[ToolSet], output: str, should_cache: bool = True) -> None:
34
25
  self.last_used_tool = last_used_tool
35
26
 
36
- if self.cache and should_cache and last_used_tool.tool.name != CacheTool().name:
37
- self.cache.add(tool=last_used_tool.tool.name, input=last_used_tool.kwargs, output=output)
27
+ if should_cache:
28
+ self.cache = CacheHandler()
29
+ self.cache.add(tool_name=last_used_tool.tool.name, input=str(last_used_tool.kwargs), output=output)
38
30
 
39
31
 
40
- def has_called_before(self, tool_set: ToolSet = None) -> bool:
32
+ def has_called_before(self, tool_set: InstanceOf[ToolSet] = None) -> bool:
41
33
  if tool_set is None or not self.last_used_tool:
42
34
  return False
43
35
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: versionhq
3
- Version: 1.1.9.13
3
+ Version: 1.1.10.2
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
@@ -26,6 +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
30
  Project-URL: Repository, https://github.com/versionHQ/multi-agent-system
30
31
  Project-URL: Issues, https://github.com/versionHQ/multi-agent-system/issues
31
32
  Keywords: orchestration framework,orchestration,ai agent,multi-agent system,RAG,agent
@@ -60,7 +61,7 @@ Requires-Dist: composio-langchain>=0.6.12
60
61
 
61
62
  ![MIT license](https://img.shields.io/badge/License-MIT-green)
62
63
  [![Publisher](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml/badge.svg)](https://github.com/versionHQ/multi-agent-system/actions/workflows/publish.yml)
63
- ![PyPI](https://img.shields.io/badge/PyPI-v1.1.9.3-blue)
64
+ ![PyPI](https://img.shields.io/badge/PyPI->=v1.1.10-blue)
64
65
  ![python ver](https://img.shields.io/badge/Python-3.12/3.13-purple)
65
66
  ![pyenv ver](https://img.shields.io/badge/pyenv-2.5.0-orange)
66
67
 
@@ -76,8 +77,9 @@ Messaging workflows are created at individual level, and will be deployed on thi
76
77
 
77
78
  - [PyPI](https://pypi.org/project/versionhq/)
78
79
  - [Github (LLM orchestration)](https://github.com/versionHQ/multi-agent-system)
79
- - [Github (Test client app)](https://github.com/versionHQ/test-client-app)
80
- - [Use case](https://versi0n.io/) - client app (alpha)
80
+ - [Doc](https://chief-oxygen-8a2.notion.site/Documentation-17e923685cf98001a5fad5c4b2acd79b?pvs=4)
81
+ <!-- - [Github (Test client app)](https://github.com/versionHQ/test-client-app) -->
82
+ - [Use case](https://versi0n.io/): Client web app for the outbound messaging automation
81
83
 
82
84
 
83
85
  <hr />
@@ -152,6 +154,9 @@ Multiple `agents` can form a `team` to complete complex tasks together.
152
154
  from versionhq.agent.model import Agent
153
155
  from versionhq.task.model import Task, ResponseField
154
156
 
157
+ def my_callback_func():
158
+ """callback func"""
159
+
155
160
  agent = Agent(
156
161
  role="demo",
157
162
  goal="amazing project goal",
@@ -162,13 +167,11 @@ Multiple `agents` can form a `team` to complete complex tasks together.
162
167
 
163
168
  task = Task(
164
169
  description="Amazing task",
165
- expected_output_json=True,
166
- expected_output_pydantic=False,
167
- output_field_list=[
168
- ResponseField(title="test1", type=str, required=True),
169
- ResponseField(title="test2", type=list, required=True),
170
+ response_fields=[
171
+ ResponseField(title="test1", data_type=str, required=True),
172
+ ResponseField(title="test2", data_type=list, items=str, required=True),
170
173
  ],
171
- callback=None,
174
+ callbacks=[my_callback_func]
172
175
  )
173
176
  res = task.execute_sync(agent=agent, context="amazing context to consider.")
174
177
  return res.to_dict()
@@ -192,13 +195,13 @@ This will return a dictionary with keys defined in the `ResponseField`.
192
195
 
193
196
  task_1 = Task(
194
197
  description="Analyze the client's business model.",
195
- output_field_list=[ResponseField(title="test1", type=str, required=True),],
198
+ response_fields=[ResponseField(title="test1", data_type=str, required=True),],
196
199
  allow_delegation=True
197
200
  )
198
201
 
199
202
  task_2 = Task(
200
203
  description="Define the cohort.",
201
- output_field_list=[ResponseField(title="test1", type=int, required=True),],
204
+ response_fields=[ResponseField(title="test1", data_type=int, required=True),],
202
205
  allow_delegation=False
203
206
  )
204
207
 
@@ -234,7 +237,7 @@ Tasks can be delegated to a team manager, peers in the team, or completely new a
234
237
  - [Composio](https://composio.dev/): Conect RAG agents with external tools, Apps, and APIs to perform actions and receive triggers. We use [tools](https://composio.dev/tools) and [RAG tools](https://app.composio.dev/app/ragtool) from Composio toolset.
235
238
 
236
239
  **Deployment**
237
- - Python: Primary programming language. We use 3.12 in this project
240
+ - Python: Primary programming language. v3.13 is recommended.
238
241
  - [uv](https://docs.astral.sh/uv/): Python package installer and resolver
239
242
  - [pre-commit](https://pre-commit.com/): Manage and maintain pre-commit hooks
240
243
  - [setuptools](https://pypi.org/project/setuptools/): Build python modules
@@ -306,19 +309,17 @@ src/
306
309
 
307
310
  ## Contributing
308
311
 
309
- 1. Fork the repository
310
-
311
- 2. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
312
+ 1. Create your feature branch (`git checkout -b feature/your-amazing-feature`)
312
313
 
313
- 3. Create amazing features
314
+ 2. Create amazing features
314
315
 
315
- 4. Test the features using the `tests` directory.
316
+ 3. Test the features using the `tests` directory.
316
317
 
317
318
  - Add a test function to respective components in the `tests` directory.
318
- - Add your `LITELLM_API_KEY`, `OPENAI_API_KEY`, `COMPOSIO_API_KEY`, `DEFAULT_USER_ID` to the Github `repository secrets` @ settings > secrets & variables > Actions.
319
+ - Add your `LITELLM_API_KEY`, `OPENAI_API_KEY`, `COMPOSIO_API_KEY`, `DEFAULT_USER_ID` to the Github `repository secrets` located at settings > secrets & variables > Actions.
319
320
  - Run a test.
320
321
  ```
321
- uv run pytest tests -vv
322
+ uv run pytest tests -vv --cache-clear
322
323
  ```
323
324
 
324
325
  **pytest**
@@ -326,10 +327,10 @@ src/
326
327
  * When adding a new file to `tests`, name the file ended with `_test.py`.
327
328
  * When adding a new feature to the file, name the feature started with `test_`.
328
329
 
329
- 5. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
330
- 6. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
331
- 7. Push to the branch (`git push origin feature/your-amazing-feature`)
332
- 8. Open a pull request
330
+ 4. Pull the latest version of source code from the main branch (`git pull origin main`) *Address conflicts if any.
331
+ 5. Commit your changes (`git add .` / `git commit -m 'Add your-amazing-feature'`)
332
+ 6. Push to the branch (`git push origin feature/your-amazing-feature`)
333
+ 7. Open a pull request
333
334
 
334
335
 
335
336
  **Optional**
@@ -342,7 +343,7 @@ src/
342
343
  ```
343
344
  The frontend will be available at `http://localhost:3000`.
344
345
 
345
- * `production` is available at `https://versi0n.io`. Currently, we are running alpha test.
346
+ * `production` use case is available at `https://versi0n.io`. Currently, we are running alpha test.
346
347
 
347
348
 
348
349
 
@@ -0,0 +1,44 @@
1
+ versionhq/__init__.py,sha256=GkGY1ob5I6BdJjds_hdxOYWJ8n3EIWjTAQ48v1UheoQ,951
2
+ versionhq/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ versionhq/_utils/i18n.py,sha256=TwA_PnYfDLA6VqlUDPuybdV9lgi3Frh_ASsb_X8jJo8,1483
4
+ versionhq/_utils/logger.py,sha256=U-MpeGueA6YS8Ptfy0VnU_ePsZP-8Pvkvi0tZ4s_UMg,1438
5
+ versionhq/_utils/process_config.py,sha256=jbPGXK2Kb4iyCugJ3FwRJuU0wL5Trq2x4xFQz2uOyFY,746
6
+ versionhq/_utils/rpm_controller.py,sha256=dUgFd6JtdjiLLTRmrjsBHdTaLn73XFuKpLbJh7thf2A,2289
7
+ versionhq/_utils/usage_metrics.py,sha256=hhq1OCW8Z4V93vwW2O2j528EyjOlF8wlTsX5IL-7asA,1106
8
+ versionhq/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ versionhq/agent/model.py,sha256=g8S8d0uHORrpq2mAUzo1Tx1hZmtYKk8HT55iOICSte8,20344
10
+ versionhq/agent/parser.py,sha256=Z_swUPO3piJQuYU8oVYwXWeR2zjmNb4PxbXZeR-GlIg,4694
11
+ versionhq/agent/TEMPLATES/Backstory.py,sha256=Gub3SUbdrNAwV0ITLYdZFJ4VFZRDfDRPdBZrtlknrds,554
12
+ versionhq/agent/TEMPLATES/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ versionhq/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ versionhq/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ versionhq/clients/customer/__init__.py,sha256=-YXh1FQfvpfLacK8SUC7bD7Wx_eIEi4yrkCC_cUasFg,217
16
+ versionhq/clients/customer/model.py,sha256=_AtaVVMm9MgCwrQ-HTRQ2oXUMKrSCEfZwE2JdRz3xTw,2508
17
+ versionhq/clients/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ versionhq/clients/product/model.py,sha256=hLTvvQsatNuq0DtyTqpP_gRKgnv6N4uRjavnGfk7b6Y,3695
19
+ versionhq/clients/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ versionhq/clients/workflow/model.py,sha256=FNftenLLoha0bkivrjId32awLHAkBwIT8iNljdic_bw,6003
21
+ versionhq/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ versionhq/llm/llm_vars.py,sha256=SSrkrph1Nf6nvwsqf48vMovs2byxbL33CI8kcoakHK0,8759
23
+ versionhq/llm/model.py,sha256=2waDxP_pISqqF2MTTdvzARi0hS9xna_d7YoGMwf8RGM,13020
24
+ versionhq/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ versionhq/storage/task_output_storage.py,sha256=xoBJHeqUyQt6iJoR1WQTghP-fyxXL66qslpX1QC2-4o,4827
26
+ versionhq/task/__init__.py,sha256=l2r_g01i91JAGlOoHZP_Gh2WCk6mo9D19lcqt7sKMpQ,186
27
+ versionhq/task/formatter.py,sha256=N8Kmk9vtrMtBdgJ8J7RmlKNMdZWSmV8O1bDexmCWgU0,643
28
+ versionhq/task/log_handler.py,sha256=KJRrcNZgFSKhlNzvtYFnvtp6xukaF1s7ifX9u4zWrN8,1683
29
+ versionhq/task/model.py,sha256=Kj_a67TitiQsy9uZST7yDdi3mXcQqRhbdOF3DZ_fwjA,26207
30
+ versionhq/team/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ versionhq/team/model.py,sha256=NzcRXWwP0adWL9vsnsmI-A5dOcE3199FGmGgemUB2VA,20043
32
+ versionhq/team/team_planner.py,sha256=XkM93ItI59cuEzMN1s1jJ-B4LyalSZnAlYBY5SUCbVs,3603
33
+ versionhq/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ versionhq/tool/cache_handler.py,sha256=iL8FH7X0G-cdT0uhJwzuhLDaadTXOdfybZcDy151-es,1085
35
+ versionhq/tool/composio_tool.py,sha256=38mEiVvTkuw1BLD233Bl1Gwxbpss1yfQiZLTWwX6BdA,8648
36
+ versionhq/tool/composio_tool_vars.py,sha256=FvBuEXsOQUYnN7RTFxT20kAkiEYkxWKkiVtgpqOzKZQ,1843
37
+ versionhq/tool/decorator.py,sha256=C4ZM7Xi2gwtEMaSeRo-geo_g_MAkY77WkSLkAuY0AyI,1205
38
+ versionhq/tool/model.py,sha256=5qG-OH7zohvepPDOjdjDulhEqmNUM4osiyk5LaxmSiU,12333
39
+ versionhq/tool/tool_handler.py,sha256=2m41K8qo5bGCCbwMFferEjT-XZ-mE9F0mDUOBkgivOI,1416
40
+ versionhq-1.1.10.2.dist-info/LICENSE,sha256=7CCXuMrAjPVsUvZrsBq9DsxI2rLDUSYXR_qj4yO_ZII,1077
41
+ versionhq-1.1.10.2.dist-info/METADATA,sha256=UJJNvaPJqRsEQepGITgpHi6rcGmpXPO-zS_tuNVJpiY,16356
42
+ versionhq-1.1.10.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
43
+ versionhq-1.1.10.2.dist-info/top_level.txt,sha256=DClQwxDWqIUGeRJkA8vBlgeNsYZs4_nJWMonzFt5Wj0,10
44
+ versionhq-1.1.10.2.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- from typing import Any, Dict, Optional
2
-
3
- from pydantic import BaseModel, PrivateAttr
4
-
5
-
6
- class CacheHandler(BaseModel):
7
- _cache: Dict[str, Any] = PrivateAttr(default_factory=dict)
8
-
9
- def add(self, tool: str, input: str, output: Any) -> None:
10
- self._cache[f"{tool}-{input}"] = output
11
-
12
- def read(self, tool: str, input: str) -> Optional[str]:
13
- return self._cache.get(f"{tool}-{input}")
@@ -1,43 +0,0 @@
1
- versionhq/__init__.py,sha256=3nslg_kJtwGMpYO4ZHQnrpnjxr0-n_xe5MeeQKwja0U,951
2
- versionhq/_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- versionhq/_utils/cache_handler.py,sha256=3-lw_5ZMWC8hnPAkSQULJ2V1FvZZ-wg9mQaUJGSOjI8,403
4
- versionhq/_utils/i18n.py,sha256=TwA_PnYfDLA6VqlUDPuybdV9lgi3Frh_ASsb_X8jJo8,1483
5
- versionhq/_utils/logger.py,sha256=cPxDz1YrMH4ZsLzLc11XrKBfQbLWNNXRUEVUgjAeeOE,1591
6
- versionhq/_utils/process_config.py,sha256=UqoWD5IR4VLxEDGxIyVUylw_ppXwk8Wx1ynVuD-pUSg,822
7
- versionhq/_utils/rpm_controller.py,sha256=dUgFd6JtdjiLLTRmrjsBHdTaLn73XFuKpLbJh7thf2A,2289
8
- versionhq/_utils/usage_metrics.py,sha256=hhq1OCW8Z4V93vwW2O2j528EyjOlF8wlTsX5IL-7asA,1106
9
- versionhq/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- versionhq/agent/model.py,sha256=LFkD00zIeIfntwvebomYX6zTqIMQVkQYFEKjxOtTaPQ,18598
11
- versionhq/agent/parser.py,sha256=Z_swUPO3piJQuYU8oVYwXWeR2zjmNb4PxbXZeR-GlIg,4694
12
- versionhq/agent/TEMPLATES/Backstory.py,sha256=cdngBx1GEv7nroR46FEhnysnBJ9mEVL763_9np6Skkc,395
13
- versionhq/agent/TEMPLATES/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- versionhq/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- versionhq/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- versionhq/clients/customer/__init__.py,sha256=-YXh1FQfvpfLacK8SUC7bD7Wx_eIEi4yrkCC_cUasFg,217
17
- versionhq/clients/customer/model.py,sha256=_AtaVVMm9MgCwrQ-HTRQ2oXUMKrSCEfZwE2JdRz3xTw,2508
18
- versionhq/clients/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- versionhq/clients/product/model.py,sha256=c_watpIg-FzpJ2tMml6M1EbAckgGZOqTSc_GZ3Kb_r4,3676
20
- versionhq/clients/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- versionhq/clients/workflow/model.py,sha256=Onu3O4y_wroOnEPf7QZkeZp_WPHfk2DVQGdtoXfZvbc,5984
22
- versionhq/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- versionhq/llm/llm_vars.py,sha256=YZoXqFBW7XpclUZ14_AAz7WOjoyCXnGcI959GSpX2q0,5343
24
- versionhq/llm/model.py,sha256=mXzSuf1s6MebGT7_yqgNppde0NIlAF8bjIXAp2MZ9Uw,8247
25
- versionhq/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- versionhq/storage/task_output_storage.py,sha256=xoBJHeqUyQt6iJoR1WQTghP-fyxXL66qslpX1QC2-4o,4827
27
- versionhq/task/__init__.py,sha256=g4mCATnn1mUXxsfQ5p6IpPawr8O421wVIT8kMKEcxQw,180
28
- versionhq/task/formatter.py,sha256=N8Kmk9vtrMtBdgJ8J7RmlKNMdZWSmV8O1bDexmCWgU0,643
29
- versionhq/task/log_handler.py,sha256=KJRrcNZgFSKhlNzvtYFnvtp6xukaF1s7ifX9u4zWrN8,1683
30
- versionhq/task/model.py,sha256=e4baXfxFSrV_rEntD7CQFq7J86qTa5E5xleZKGoFZxE,19705
31
- versionhq/team/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- versionhq/team/model.py,sha256=E52OUVzUtvR--51SFRJos3JdYKri1t2jbvvzoOvShQc,20181
33
- versionhq/team/team_planner.py,sha256=uzX2yed7A7gNSs6qH5jIq2zXMVF5BwQQ4HPATsB9DSQ,3675
34
- versionhq/tool/__init__.py,sha256=FvBuEXsOQUYnN7RTFxT20kAkiEYkxWKkiVtgpqOzKZQ,1843
35
- versionhq/tool/composio_tool.py,sha256=BJqaA1NhV0BT9AdY7OLCGpsAI3VEuCKnOS6D9vuU4zQ,8630
36
- versionhq/tool/decorator.py,sha256=W_WjzZy8y43AoiFjHLPUQfNipmpOPe-wQknCWloPwmY,1195
37
- versionhq/tool/model.py,sha256=yrvog9wh-cuIXRngwXOzPlHwBO3UhUFxCH3vQ5qRKBA,6823
38
- versionhq/tool/tool_handler.py,sha256=A3zUkZkx4JEpFHI2uBkHDpzWfADw-bCYUQhgm6rpITM,1569
39
- versionhq-1.1.9.13.dist-info/LICENSE,sha256=7CCXuMrAjPVsUvZrsBq9DsxI2rLDUSYXR_qj4yO_ZII,1077
40
- versionhq-1.1.9.13.dist-info/METADATA,sha256=bVbnGqU2iPjmCO4lmAdjal6PzY7FWYARt_hM3j7rSIo,16071
41
- versionhq-1.1.9.13.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
42
- versionhq-1.1.9.13.dist-info/top_level.txt,sha256=DClQwxDWqIUGeRJkA8vBlgeNsYZs4_nJWMonzFt5Wj0,10
43
- versionhq-1.1.9.13.dist-info/RECORD,,