mech-client 0.3.0__py3-none-any.whl → 0.6.0__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.
Files changed (33) hide show
  1. mech_client/__init__.py +1 -1
  2. mech_client/abis/AgentMech.json +718 -0
  3. mech_client/abis/AgentRegistry.json +1037 -0
  4. mech_client/abis/AgreementStoreManager.base.json +766 -0
  5. mech_client/abis/AgreementStoreManager.gnosis.json +766 -0
  6. mech_client/abis/BalanceTrackerNvmSubscriptionToken.json +660 -0
  7. mech_client/abis/DIDRegistry.base.json +2476 -0
  8. mech_client/abis/DIDRegistry.gnosis.json +2476 -0
  9. mech_client/abis/EscrowPaymentCondition.base.json +717 -0
  10. mech_client/abis/EscrowPaymentCondition.gnosis.json +717 -0
  11. mech_client/abis/LockPaymentCondition.base.json +874 -0
  12. mech_client/abis/LockPaymentCondition.gnosis.json +874 -0
  13. mech_client/abis/NFTSalesTemplate.base.json +698 -0
  14. mech_client/abis/NFTSalesTemplate.gnosis.json +698 -0
  15. mech_client/abis/NeverminedConfig.base.json +587 -0
  16. mech_client/abis/NeverminedConfig.gnosis.json +587 -0
  17. mech_client/abis/SubscriptionNFT.base.json +300 -0
  18. mech_client/abis/SubscriptionNFT.gnosis.json +300 -0
  19. mech_client/abis/SubscriptionToken.base.json +1393 -0
  20. mech_client/abis/TransferNFTCondition.base.json +1062 -0
  21. mech_client/abis/TransferNFTCondition.gnosis.json +1062 -0
  22. mech_client/cli.py +99 -10
  23. mech_client/configs/mechs.json +3 -9
  24. mech_client/interact.py +14 -39
  25. mech_client/marketplace_interact.py +199 -156
  26. mech_client/mech_tool_management.py +11 -5
  27. mech_client/subgraph.py +21 -35
  28. mech_client/wss.py +7 -6
  29. {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/METADATA +45 -13
  30. {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/RECORD +33 -13
  31. {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/LICENSE +0 -0
  32. {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/WHEEL +0 -0
  33. {mech_client-0.3.0.dist-info → mech_client-0.6.0.dist-info}/entry_points.txt +0 -0
mech_client/subgraph.py CHANGED
@@ -48,12 +48,28 @@ DELIVER_QUERY_TEMPLATE = Template(
48
48
  """
49
49
  )
50
50
  DEFAULT_TIMEOUT = 600.0
51
+ CHAIN_TO_ADDRESSES = {
52
+ "gnosis": {
53
+ 3: "0xFf82123dFB52ab75C417195c5fDB87630145ae81",
54
+ 6: "0x77af31De935740567Cf4fF1986D04B2c964A786a",
55
+ 9: "0x552cea7bc33cbbeb9f1d90c1d11d2c6daeffd053",
56
+ 11: "0x9aDe7A78A39B39a44b7a084923E93AA0B19Fd690",
57
+ 19: "0x45b73d649c7b982548d5a6dd3d35e1c5c48997d0",
58
+ },
59
+ "base": {
60
+ 1: "0x37C484cc34408d0F827DB4d7B6e54b8837Bf8BDA",
61
+ 2: "0x111D7DB1B752AB4D2cC0286983D9bd73a49bac6c",
62
+ 3: "0x111D7DB1B752AB4D2cC0286983D9bd73a49bac6c",
63
+ },
64
+ "arbitrum": {2: "0x1FDAD3a5af5E96e5a64Fc0662B1814458F114597"},
65
+ "polygon": {2: "0xbF92568718982bf65ee4af4F7020205dE2331a8a"},
66
+ "celo": {2: "0x230eD015735c0D01EA0AaD2786Ed6Bd3C6e75912"},
67
+ "optimism": {2: "0xDd40E7D93c37eFD860Bd53Ab90b2b0a8D05cf71a"},
68
+ }
51
69
 
52
70
 
53
71
  def query_agent_address( # pylint: disable=too-many-return-statements
54
72
  agent_id: int,
55
- url: str,
56
- timeout: Optional[float] = None,
57
73
  chain_config: Optional[str] = None,
58
74
  ) -> Optional[str]:
59
75
  """
@@ -61,44 +77,14 @@ def query_agent_address( # pylint: disable=too-many-return-statements
61
77
 
62
78
  :param agent_id: The ID of the agent.
63
79
  :type agent_id: int
64
- :param url: Subgraph URL.
65
- :type url: str
66
- :param timeout: Timeout for the request.
67
- :type timeout: Optional[float]
68
80
  :type chain_config: Optional[str]:
69
81
  :return: The agent address if found, None otherwise.
70
82
  :rtype: Optional[str]
71
83
  """
72
84
  # temporary hard coded until subgraph present
73
- if chain_config == "base" and agent_id == 1:
74
- return "0x37C484cc34408d0F827DB4d7B6e54b8837Bf8BDA"
75
- if chain_config == "base" and agent_id == 2:
76
- return "0x111D7DB1B752AB4D2cC0286983D9bd73a49bac6c"
77
- if chain_config == "base" and agent_id == 3:
78
- return "0x111D7DB1B752AB4D2cC0286983D9bd73a49bac6c"
79
- if chain_config == "arbitrum" and agent_id == 2:
80
- return "0x1FDAD3a5af5E96e5a64Fc0662B1814458F114597"
81
- if chain_config == "polygon" and agent_id == 2:
82
- return "0xbF92568718982bf65ee4af4F7020205dE2331a8a"
83
- if chain_config == "celo" and agent_id == 2:
84
- return "0x230eD015735c0D01EA0AaD2786Ed6Bd3C6e75912"
85
- if chain_config == "optimism" and agent_id == 2:
86
- return "0xDd40E7D93c37eFD860Bd53Ab90b2b0a8D05cf71a"
87
- client = Client(
88
- transport=AIOHTTPTransport(url=url),
89
- execute_timeout=timeout or 30.0,
90
- )
91
- response = client.execute(
92
- document=gql(
93
- request_string=AGENT_QUERY_TEMPLATE.substitute({"agent_id": agent_id})
94
- )
95
- )
96
- mechs = response["createMeches"] # pylint: disable=unsubscriptable-object
97
- if len(mechs) == 0:
98
- return None
99
-
100
- (record,) = mechs
101
- return record["mech"]
85
+ if not chain_config:
86
+ raise ValueError("Chain config not specified")
87
+ return CHAIN_TO_ADDRESSES.get(chain_config, {}).get(agent_id, None)
102
88
 
103
89
 
104
90
  async def query_deliver_hash(
mech_client/wss.py CHANGED
@@ -23,7 +23,7 @@ import asyncio
23
23
  import json
24
24
  import time
25
25
  from concurrent.futures import ThreadPoolExecutor
26
- from typing import Any, Dict, cast
26
+ from typing import Any, Dict, List, cast
27
27
 
28
28
  import websocket
29
29
  from aea.crypto.base import Crypto
@@ -143,11 +143,11 @@ def watch_for_request_id( # pylint: disable=too-many-arguments
143
143
  return request_id
144
144
 
145
145
 
146
- def watch_for_marketplace_request_id( # pylint: disable=too-many-arguments, unused-argument
146
+ def watch_for_marketplace_request_ids( # pylint: disable=too-many-arguments, unused-argument
147
147
  marketplace_contract: Web3Contract,
148
148
  ledger_api: EthereumApi,
149
149
  tx_hash: str,
150
- ) -> str:
150
+ ) -> List[str]:
151
151
  """
152
152
  Watches for events on mech.
153
153
 
@@ -167,10 +167,11 @@ def watch_for_marketplace_request_id( # pylint: disable=too-many-arguments, unu
167
167
  tx_receipt
168
168
  )
169
169
  if len(rich_logs) == 0:
170
- return "Empty Logs"
170
+ return ["Empty Logs"]
171
171
 
172
- request_id = rich_logs[0]["args"]["requestIds"][0]
173
- return request_id.hex()
172
+ request_ids = rich_logs[0]["args"]["requestIds"]
173
+ request_ids_hex = [request_id.hex() for request_id in request_ids]
174
+ return request_ids_hex
174
175
 
175
176
 
176
177
  async def watch_for_data_url_from_wss( # pylint: disable=too-many-arguments
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mech-client
3
- Version: 0.3.0
3
+ Version: 0.6.0
4
4
  Summary: Basic client to interact with a mech
5
5
  License: Apache-2.0
6
6
  Author: David Minarsch
@@ -16,6 +16,7 @@ Requires-Dist: open-aea-cli-ipfs (>=1.53.0,<2.0.0)
16
16
  Requires-Dist: open-aea-ledger-cosmos (>=1.53.0,<2.0.0)
17
17
  Requires-Dist: open-aea-ledger-ethereum (>=1.53.0,<2.0.0)
18
18
  Requires-Dist: open-aea[cli] (>=1.53.0,<2.0.0)
19
+ Requires-Dist: setuptools (>=77.0.3,<78.0.0)
19
20
  Requires-Dist: tabulate (>=0.9.0,<0.10.0)
20
21
  Requires-Dist: websocket-client (>=0.32.0,<1)
21
22
  Description-Content-Type: text/markdown
@@ -143,15 +144,17 @@ export MECHX_API_KEY=<your api key>
143
144
  The basic usage of the Mech Client is as follows:
144
145
 
145
146
  ```bash
146
- mechx interact <prompt> --agent_id <agent_id>
147
+ mechx interact --prompts <prompt> --tools <tool> --agent_id <agent_id>
147
148
  ```
148
149
 
149
- where agent with `<agent_id>` will process `<prompt>` with the default options. Each chain has its own set of Mech agents. You can find the agent IDs for each chain on the [Mech Hub](https://aimechs.autonolas.network/registry) or on the [Mech repository](https://github.com/valory-xyz/mech?tab=readme-ov-file#examples-of-deployed-mechs).
150
+ where agent with `<agent_id>` will process `<prompt>` with the `<tool>` and default options. Each chain has its own set of Mech agents. You can find the agent IDs for each chain on the [Mech Hub](https://aimechs.autonolas.network/registry) or on the [Mech repository](https://github.com/valory-xyz/mech?tab=readme-ov-file#examples-of-deployed-mechs).
151
+
152
+ ⚠️ Batch requests and tools are not supported for legacy mechs
150
153
 
151
154
  Some useful options:
152
155
 
153
156
  - `--key <private_key_path>`: Specifies the path of the private key. The default value is `./ethereum_private_key.txt`.
154
- - `--tool <name>`: Name of the tool to process the prompt. If you are aware about the tools that are provided by an agent you can directly provide its name using this option. If not provided, it will show a list of available tools for the agent so that you can select which one you want to use:
157
+ - `--tools <name>`: Name of the tool to process the prompt. If you are aware about the tools that are provided by an agent you can directly provide its name using this option. If not provided, it will show a list of available tools for the agent so that you can select which one you want to use:
155
158
 
156
159
  ```text
157
160
  Select prompting tool
@@ -177,12 +180,12 @@ Some useful options:
177
180
  - `on-chain`: Wait for the result using the Subgraph and the Websocket subscription (whichever arrives first).
178
181
  - `wait-for-both` (Default): Wait for the result using both `off-chain` and `on-chain` (whichever arrives first).
179
182
 
180
- ### Example
183
+ ##### Example
181
184
 
182
185
  Example of a request specifying a key file and tool:
183
186
 
184
187
  ```bash
185
- mechx interact "write a short poem" --agent_id 6 --key ~/ethereum_private_key.txt --tool openai-gpt-3.5-turbo --chain-config gnosis --confirm on-chain
188
+ mechx interact --prompts "write a short poem" --agent_id 6 --key ~/ethereum_private_key.txt --tools openai-gpt-3.5-turbo --chain-config gnosis --confirm on-chain
186
189
  ```
187
190
 
188
191
  You will see an output like this:
@@ -199,23 +202,53 @@ Data from agent: {'requestId': 1004074058566339663950817114309409628095686850319
199
202
 
200
203
  #### With the Mech Marketplace
201
204
 
202
- With the Mech Marketplace, the basic usage of the Mech Client is as follows.
205
+ With the Mech Marketplace, in order to pay for the Mech fees, you can make a deposit before sending requests. The deposit depends on the
206
+ payment model of the Mech. For a fixed price Mech receiving payments in native token, use the following:
207
+
208
+ ```bash
209
+ mechx deposit-native --chain-config <chain_config> <amount>
210
+ ```
211
+
212
+ For a fixed price Mech receiving payments in OLAS, use the following (the amount is in ether):
203
213
 
204
214
  ```bash
205
- mechx interact <prompt> --tool openai-gpt-3.5-turbo --chain-config <chain_config>
215
+ mechx deposit-token --chain-config <chain_config> <amount>
206
216
  ```
207
217
 
208
- To use a custom mech to send requests to, use the `priority-mech` flag while sending the requests
218
+ For a Mech using Nevermined subscriptions, to make requests, it is necessary to buy a subscription. To do that you can use the following command:
219
+
220
+ ```bash
221
+ mechx purchase-nvm-subscription --chain-config <chain_config>
222
+ ```
223
+
224
+ :warning: If you face issues with base RPC, please consider updating to a new one [here](https://github.com/valory-xyz/mech-client/blob/feat/nvm_sub_integration/scripts/nvm_subscription/resources/networks.json#L10).
225
+
226
+ You can use the option `--key <private_key_file_path>` in order to customize the path to the private key file.
227
+
228
+ The basic usage of the Mech Client is then as follows.
209
229
 
210
230
  ```bash
211
- mechx interact <prompt> --priority-mech <priority mech address> --tool openai-gpt-3.5-turbo --chain-config <chain_config>
231
+ mechx interact --prompts <prompt> --priority-mech <priority mech address> --tools openai-gpt-3.5-turbo --chain-config <chain_config>
212
232
  ```
213
233
 
214
234
  Additionally to other options which are the same as for legacy Mechs, this usage has the following option:
215
235
 
216
- `--use-prepaid <bool>`: use the prepaid method to send requests to a Mech via the Mech Marketplace. Defaults to False.
236
+ `--use-prepaid <bool>`: use the prepaid method to send requests to a Mech via the Mech Marketplace. Defaults to False. <br>
217
237
  `--use-offchain <bool>`: use the off-chain method to send requests to a Mech via the Mech Marketplace. Defaults to False.
218
238
 
239
+ The Mech Client can also be used to send batch requests. There are couple of different ways to achieve this:
240
+
241
+ ```bash
242
+ mechx interact --prompts={<prompt-1>,<prompt-2>} --priority-mech <priority mech address> --tools={<tool-1>,<tool-2>} --chain-config <chain_config>
243
+ ```
244
+
245
+ or <br>
246
+
247
+ ```bash
248
+ mechx interact --prompts <prompt-1> --prompts <prompt-2> --priority-mech <priority mech address> --tools <tool-1> --tools <tool-2> --chain-config <chain_config>
249
+ ```
250
+
251
+
219
252
  ### List tools available for agents
220
253
 
221
254
  To list the tools available for a specific agent or for all agents, use the `tools-for-agents` command. You can specify an agent ID to get tools for a specific agent, or omit it to list tools for all agents.
@@ -336,7 +369,6 @@ Additionally, you can override any configuration parameter by exporting any of t
336
369
  MECHX_CHAIN_RPC
337
370
  MECHX_WSS_ENDPOINT
338
371
  MECHX_GAS_LIMIT
339
- MECHX_CONTRACT_ABI_URL
340
372
  MECHX_TRANSACTION_URL
341
373
  MECHX_SUBGRAPH_URL
342
374
 
@@ -476,7 +508,7 @@ You can find the agent IDs for each chain on the [Mech Hub](https://aimechs.auto
476
508
  Use the `--chain-config <name>` parameter together with a valid `<agent_id>`, for example:
477
509
 
478
510
  ```bash
479
- mechx interact "write a short poem" 2 --key ./ethereum_private_key.txt --tool openai-gpt-4 --chain-config celo --confirm on-chain
511
+ mechx interact --prompts "write a short poem" --agent_id 2 --key ./ethereum_private_key.txt --tools openai-gpt-4 --chain-config celo --confirm on-chain
480
512
  ```
481
513
 
482
514
  </details>
@@ -1,14 +1,34 @@
1
- mech_client/__init__.py,sha256=Fv_rB4SSlUfKkC4yVa0VynPADc604qwxEG5c-jAgNic,42
1
+ mech_client/__init__.py,sha256=u1bXGPf2ZrokEsWfyYdYTo12ju14tZw8ZMC9qgLP3JU,42
2
+ mech_client/abis/AgentMech.json,sha256=IEbs_xBGunBu5h-uT5DvIty8Zw412QoPI46S_DUMYNw,18082
3
+ mech_client/abis/AgentRegistry.json,sha256=2qmXeFINZWz9pyOma6Bq67kMDSUI1lD7WvgHLwuETD8,24723
4
+ mech_client/abis/AgreementStoreManager.base.json,sha256=_ljdIZcfFGmFzBHUTfhA4X0382ZHHpkdr_CziTwUETo,34360
5
+ mech_client/abis/AgreementStoreManager.gnosis.json,sha256=JxftbiQDFF0bHm3Gtlaxvccmmx5-zHdzsKBFUn0rITY,34360
2
6
  mech_client/abis/BalanceTrackerFixedPriceNative.json,sha256=MF5jDqSMoZztvMV4oc5ij-Qn1DAZ1Nyz9EOFRb9wSQ0,12478
3
7
  mech_client/abis/BalanceTrackerFixedPriceToken.json,sha256=kaXgResUkAb6u9bVTS3T_SNRPRP76hi-jTAhMiYwq4U,12408
4
8
  mech_client/abis/BalanceTrackerNvmSubscriptionNative.json,sha256=D23ibyhDsn4vjozFvzcKw-7wJpGM-R5GiqlcmyBIpcY,16536
9
+ mech_client/abis/BalanceTrackerNvmSubscriptionToken.json,sha256=4Bra0DdEi_pQUSD4hGdELOvjNL013GaJc-dANr--5D8,16204
10
+ mech_client/abis/DIDRegistry.base.json,sha256=l6UZe4SU9nMh0PvmTS5gfwd6bBM7_BT5mRyASOFyGxw,92562
11
+ mech_client/abis/DIDRegistry.gnosis.json,sha256=piDWd8nipLcI3NkMu0o2RsQkTS9m7gjDp-yLtPpcjEc,92562
12
+ mech_client/abis/EscrowPaymentCondition.base.json,sha256=Z0zr_E2Cxjfg_aHF-VLPeOQ9kAy51_aRcw-OuIPQ7zY,34475
13
+ mech_client/abis/EscrowPaymentCondition.gnosis.json,sha256=YkretgP3DKVpBZdeRqHu49oELQntuQk4-h852e4IIHQ,34475
5
14
  mech_client/abis/IERC1155.json,sha256=2xOx44MrKRk5oDEZ8PhCUgW7A4puK-GQizPKff-Fn1E,7459
6
15
  mech_client/abis/IMech.json,sha256=km0NMRyqBYh3jBQwPJCispsRfPwqNJ67kkZwYjuJci4,3989
7
16
  mech_client/abis/IToken.json,sha256=VrzR6Rr1DmrUzy5DygN1rKm6df4ir2KGdWsunZnuRKo,19637
17
+ mech_client/abis/LockPaymentCondition.base.json,sha256=mGOi_xYyH7gCzLyWu7nk_Ta46tpLNxoPAgbjQvKNQtA,43424
18
+ mech_client/abis/LockPaymentCondition.gnosis.json,sha256=ofYQo6JYSE_7Q4LPHxoOZI2qFMddSWcfVoCW-6k9KnY,43424
8
19
  mech_client/abis/MechMarketplace.json,sha256=auKTxPTi07yD98Gz2RuwH1Gq5qRCyy8-C7QBNj3uto8,32104
20
+ mech_client/abis/NFTSalesTemplate.base.json,sha256=blheE2NNxCt3ttklcsAF9WrIcnsvywAZ8jICjGVl4lQ,37995
21
+ mech_client/abis/NFTSalesTemplate.gnosis.json,sha256=6fKoxvTSQWOGQq_Yik09R8JTMRxXIPgoOC_HSAf5A7Q,37995
22
+ mech_client/abis/NeverminedConfig.base.json,sha256=0p_GV87fsBvlN6VNDm_T1ykjzD4yZKlR9-jDpo1_RRU,21221
23
+ mech_client/abis/NeverminedConfig.gnosis.json,sha256=3MT2dgUz5jAKvwItfHwz95VPvPwKxF3CG2rH8kE5eug,21221
24
+ mech_client/abis/SubscriptionNFT.base.json,sha256=oYqkgejXaNQ2Pfc1OyWRJ7GlOl77B0UC16ziS6-Y76U,8811
25
+ mech_client/abis/SubscriptionNFT.gnosis.json,sha256=vHW7ownS8qDcDLbLZMGthtLc8YdtyxaAvymfeizD-7o,8811
26
+ mech_client/abis/SubscriptionToken.base.json,sha256=5StPEyfRvDMTqtQPO-KakXXZqobXZRuE6OCAeTM7bQc,39812
27
+ mech_client/abis/TransferNFTCondition.base.json,sha256=71O_3itHBz9qPtoTLev8_a7KxlcQfIZSfxK2562lkqw,42540
28
+ mech_client/abis/TransferNFTCondition.gnosis.json,sha256=-huhxV54eoNY8mR9WtQdmSgQDgaKiUi0PULJ4HEshWw,42540
9
29
  mech_client/acn.py,sha256=Rj_jLPvJ5loDQfGbu3a_O24cJC4SwIErLceSz_zVYS8,5356
10
- mech_client/cli.py,sha256=PWkUBwirP8DMxNG-lYmh-QAJhNPX_k6yCtfjTh7iXs8,11322
11
- mech_client/configs/mechs.json,sha256=ihF23WakBh1Jbnb45OJvPjDzZ572eud3s0Gx4qNGWwQ,5699
30
+ mech_client/cli.py,sha256=cTmamHI-_DJL4NHfkF9Vv8DbaQm-5x3bTzrfKnyiBzg,14035
31
+ mech_client/configs/mechs.json,sha256=Sh-W0ZqkktSD8HokU5InoFIlqvKoq7nDlIY0fB8P6Y8,4887
12
32
  mech_client/fetch_ipfs_hash.py,sha256=tg_hYVf4deXl89x3SOBrGFUthaSeN_Vg_OHDtfjdbp4,2752
13
33
  mech_client/helpers/__init__.py,sha256=nmQig1EqBQ9EMOpgdykP3a6_2NWcoVH3-lnyHP5n0ws,1196
14
34
  mech_client/helpers/acn/README.md,sha256=WMXR2Lk0IpWjr3vpZ8cxcTHk4gwsx4wC06UPkwj9dbQ,1641
@@ -38,16 +58,16 @@ mech_client/helpers/p2p_libp2p_client/README.md,sha256=6x9s6P7TdKkcvAS1wMFHXRz4a
38
58
  mech_client/helpers/p2p_libp2p_client/__init__.py,sha256=-GOP3D_JnmXTDomrMLCbnRk7vRQmihIqTYvyIPzx-q4,879
39
59
  mech_client/helpers/p2p_libp2p_client/connection.py,sha256=b5jfcUeSoNrUw8DOSTCbK4DTi-N8bf2_pdogUOz0ep0,28606
40
60
  mech_client/helpers/p2p_libp2p_client/connection.yaml,sha256=nMiHnU_dv9EFjVNqZ-0SAnoATfadJSad-JsbDvk97Mk,1790
41
- mech_client/interact.py,sha256=zQ7UhlnZOfM4hnZBaRQ5efkfw6Rl-s7Kh6lciyoZL70,22028
42
- mech_client/marketplace_interact.py,sha256=DgDU1xY2zJO3MfxkWNFtJ8iZkjGBfP8MYL4vAEDRKWE,31418
43
- mech_client/mech_tool_management.py,sha256=XWQDcFStTK66-3ZzOwKtMo5c66KDjvbeDsIXHIP4SuU,7810
61
+ mech_client/interact.py,sha256=h3li0N79M1MaVXggONFzs_rNEr6WcG8fof_UtykSZyQ,21243
62
+ mech_client/marketplace_interact.py,sha256=rRIHYLzuaXYW7vh4fvNh9KBbUY4tgoavmMxFaPg0Rkw,33045
63
+ mech_client/mech_tool_management.py,sha256=NQFmVzzGZsIkeHokDPWXGHwa8u-pyQIMPR1Q5H81bKw,7806
44
64
  mech_client/prompt_to_ipfs.py,sha256=XqSIBko15MEkpWOQNT97fRI6jNxMF5EDBDEPOJFdhyk,2533
45
65
  mech_client/push_to_ipfs.py,sha256=IfvgaPU79N_ZmCPF9d7sPCYz2uduZH0KjT_HQ2LHXoQ,2059
46
- mech_client/subgraph.py,sha256=6hkF8l0qxWRJ0UcdxfML6JnjYBu5BuBA6EHsHJ2nHVI,5149
66
+ mech_client/subgraph.py,sha256=MiyWiLPkqtXS9qayT75xYM6tz2pxd2Q6iE92yZxDugw,4700
47
67
  mech_client/to_png.py,sha256=pjUcFJ63MJj_r73eqnfqCWMtlpsrj6H4ZmgvIEmRcFw,2581
48
- mech_client/wss.py,sha256=toD_9-gNsQAoK13Zh5mQCKbmkT2Gcqz5XaNiUGyb5Js,9801
49
- mech_client-0.3.0.dist-info/LICENSE,sha256=mdBDB-mWKV5Cz4ejBzBiKqan6Z8zVLAh9xwM64O2FW4,11339
50
- mech_client-0.3.0.dist-info/METADATA,sha256=2YFbNhpBXix_HZBGf-CSW7wspGdH53EQjqWjUK6PBLc,19911
51
- mech_client-0.3.0.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
52
- mech_client-0.3.0.dist-info/entry_points.txt,sha256=SbRMRsayzD8XfNXhgwPuXEqQsdZ5Bw9XDPnUuaDExyY,45
53
- mech_client-0.3.0.dist-info/RECORD,,
68
+ mech_client/wss.py,sha256=N38eprKqwHyQpqGa6XZ9ZUwJ_YO50wlBJqJ5D1QCIj4,9888
69
+ mech_client-0.6.0.dist-info/LICENSE,sha256=mdBDB-mWKV5Cz4ejBzBiKqan6Z8zVLAh9xwM64O2FW4,11339
70
+ mech_client-0.6.0.dist-info/METADATA,sha256=B8JraHl2kGrhhFxUkk9zZTS9ijCgpuIsK2O58p9kh4U,21369
71
+ mech_client-0.6.0.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
72
+ mech_client-0.6.0.dist-info/entry_points.txt,sha256=SbRMRsayzD8XfNXhgwPuXEqQsdZ5Bw9XDPnUuaDExyY,45
73
+ mech_client-0.6.0.dist-info/RECORD,,