versionhq 1.1.9.14__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.
- versionhq/__init__.py +1 -1
- versionhq/_utils/logger.py +1 -6
- versionhq/_utils/process_config.py +9 -12
- versionhq/agent/TEMPLATES/Backstory.py +4 -3
- versionhq/agent/model.py +160 -108
- versionhq/clients/product/model.py +1 -1
- versionhq/clients/workflow/model.py +1 -1
- versionhq/llm/{llm_variables.py → llm_vars.py} +101 -39
- versionhq/llm/model.py +104 -76
- versionhq/task/model.py +291 -125
- versionhq/team/model.py +2 -5
- versionhq/team/team_planner.py +12 -13
- versionhq/tool/__init__.py +0 -56
- versionhq/tool/cache_handler.py +40 -0
- versionhq/tool/composio_tool.py +3 -2
- versionhq/tool/composio_tool_vars.py +56 -0
- versionhq/tool/decorator.py +5 -6
- versionhq/tool/model.py +243 -97
- versionhq/tool/tool_handler.py +11 -19
- {versionhq-1.1.9.14.dist-info → versionhq-1.1.10.2.dist-info}/LICENSE +0 -0
- {versionhq-1.1.9.14.dist-info → versionhq-1.1.10.2.dist-info}/METADATA +26 -25
- versionhq-1.1.10.2.dist-info/RECORD +44 -0
- versionhq/_utils/cache_handler.py +0 -13
- versionhq-1.1.9.14.dist-info/RECORD +0 -43
- {versionhq-1.1.9.14.dist-info → versionhq-1.1.10.2.dist-info}/WHEEL +0 -0
- {versionhq-1.1.9.14.dist-info → versionhq-1.1.10.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: versionhq
|
3
|
-
Version: 1.1.
|
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
|

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

|
64
65
|

|
65
66
|

|
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
|
-
- [
|
80
|
-
- [
|
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
|
-
|
166
|
-
|
167
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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.
|
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.
|
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
|
-
|
314
|
+
2. Create amazing features
|
314
315
|
|
315
|
-
|
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`
|
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
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
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=qgKbO4z_Ip_tf_CLeRokSCc3tyh4akIzfNyL5-yb7HM,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=_7mq06b1I7kRe7XYyPKPjzduBuBBFDa_CvmEr3WkKpc,18138
|
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_variables.py,sha256=2cRRgUyJ9Em2k0NcEWivsDAoDhH04T3pN_hG6IzEBCQ,7177
|
24
|
-
versionhq/llm/model.py,sha256=DNvg93t55VujCqFSvTbjEVgPdTZTwG8CIQWre9YHH_o,10825
|
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=l2r_g01i91JAGlOoHZP_Gh2WCk6mo9D19lcqt7sKMpQ,186
|
28
|
-
versionhq/task/formatter.py,sha256=N8Kmk9vtrMtBdgJ8J7RmlKNMdZWSmV8O1bDexmCWgU0,643
|
29
|
-
versionhq/task/log_handler.py,sha256=KJRrcNZgFSKhlNzvtYFnvtp6xukaF1s7ifX9u4zWrN8,1683
|
30
|
-
versionhq/task/model.py,sha256=xyDr9AS7Xp1jYlABMuqD7Cm1RfHnfNL5rEzyE47YUFI,19729
|
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=gUmrW_AZYQqAkOylS2XHuYIdTy92-E7CxQB5VmxqgrE,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.14.dist-info/LICENSE,sha256=7CCXuMrAjPVsUvZrsBq9DsxI2rLDUSYXR_qj4yO_ZII,1077
|
40
|
-
versionhq-1.1.9.14.dist-info/METADATA,sha256=NnSKnOPGCFgFxyg1-tUjDbe08zfGM8VLfnWqrnOc7KA,16071
|
41
|
-
versionhq-1.1.9.14.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
42
|
-
versionhq-1.1.9.14.dist-info/top_level.txt,sha256=DClQwxDWqIUGeRJkA8vBlgeNsYZs4_nJWMonzFt5Wj0,10
|
43
|
-
versionhq-1.1.9.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|