hyperpocket-anthropic 0.3.5__tar.gz → 0.3.7__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/PKG-INFO +2 -2
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/hyperpocket_anthropic/pocket_anthropic.py +2 -8
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/pyproject.toml +5 -2
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/uv.lock +96 -91
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/.gitignore +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/README.md +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/__init__.py +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/hyperpocket_anthropic/__init__.py +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/hyperpocket_anthropic/util/__init__.py +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/hyperpocket_anthropic/util/tool_to_anthropic_spec.py +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/tests/__init__.py +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/tests/test_pocket_anthropic_no_profile.py +0 -0
- {hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/tests/test_pocket_anthropic_use_profile.py +0 -0
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: hyperpocket-anthropic
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.7
|
4
4
|
Author-email: Hyperpocket Team <hyperpocket@vessl.ai>
|
5
5
|
Requires-Python: >=3.10
|
6
|
-
Requires-Dist: anthropic>=0.
|
6
|
+
Requires-Dist: anthropic>=0.10.0
|
7
7
|
Requires-Dist: hyperpocket>=0.0.3
|
8
8
|
Description-Content-Type: text/markdown
|
9
9
|
|
@@ -1,8 +1,6 @@
|
|
1
1
|
import json
|
2
2
|
from typing import List, Optional
|
3
3
|
|
4
|
-
from pydantic import BaseModel
|
5
|
-
|
6
4
|
try:
|
7
5
|
from anthropic.types import ToolResultBlockParam, ToolUseBlock
|
8
6
|
except ImportError:
|
@@ -30,9 +28,7 @@ class PocketAnthropic(Pocket):
|
|
30
28
|
thread_id = "default"
|
31
29
|
profile = "default"
|
32
30
|
|
33
|
-
if isinstance(body,
|
34
|
-
body = body.model_dump()
|
35
|
-
elif isinstance(body, str):
|
31
|
+
if isinstance(body, str):
|
36
32
|
body = json.loads(body)
|
37
33
|
|
38
34
|
result, interrupted = self.invoke_with_state(
|
@@ -71,9 +67,7 @@ class PocketAnthropic(Pocket):
|
|
71
67
|
thread_id = "default"
|
72
68
|
profile = "default"
|
73
69
|
|
74
|
-
if isinstance(body,
|
75
|
-
body = body.model_dump()
|
76
|
-
elif isinstance(body, str):
|
70
|
+
if isinstance(body, str):
|
77
71
|
body = json.loads(body)
|
78
72
|
|
79
73
|
result, interrupted = await self.ainvoke_with_state(
|
@@ -1,11 +1,14 @@
|
|
1
1
|
[project]
|
2
2
|
name = "hyperpocket-anthropic"
|
3
|
-
version = "0.3.
|
3
|
+
version = "0.3.7"
|
4
4
|
description = ""
|
5
5
|
authors = [{ name = "Hyperpocket Team", email = "hyperpocket@vessl.ai" }]
|
6
6
|
requires-python = ">=3.10"
|
7
7
|
readme = "README.md"
|
8
|
-
dependencies = [
|
8
|
+
dependencies = [
|
9
|
+
"anthropic>=0.10.0",
|
10
|
+
"hyperpocket>=0.0.3",
|
11
|
+
]
|
9
12
|
|
10
13
|
[tool.uv.sources]
|
11
14
|
hyperpocket = { path = "../../hyperpocket", editable = true }
|
@@ -12,7 +12,7 @@ wheels = [
|
|
12
12
|
|
13
13
|
[[package]]
|
14
14
|
name = "anthropic"
|
15
|
-
version = "0.
|
15
|
+
version = "0.45.2"
|
16
16
|
source = { registry = "https://pypi.org/simple" }
|
17
17
|
dependencies = [
|
18
18
|
{ name = "anyio" },
|
@@ -23,9 +23,9 @@ dependencies = [
|
|
23
23
|
{ name = "sniffio" },
|
24
24
|
{ name = "typing-extensions" },
|
25
25
|
]
|
26
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
26
|
+
sdist = { url = "https://files.pythonhosted.org/packages/15/74/2b2485fc120da834c0c5be07462541ec082e9fa8851d845f2587e480535a/anthropic-0.45.2.tar.gz", hash = "sha256:32a18b9ecd12c91b2be4cae6ca2ab46a06937b5aa01b21308d97a6d29794fb5e", size = 200901 }
|
27
27
|
wheels = [
|
28
|
-
{ url = "https://files.pythonhosted.org/packages/
|
28
|
+
{ url = "https://files.pythonhosted.org/packages/74/86/e81814e542d1eaeec84d2312bec93a99b9ef1d78d9bfae1fc5dd74abdf15/anthropic-0.45.2-py3-none-any.whl", hash = "sha256:ecd746f7274451dfcb7e1180571ead624c7e1195d1d46cb7c70143d2aedb4d35", size = 222797 },
|
29
29
|
]
|
30
30
|
|
31
31
|
[[package]]
|
@@ -54,11 +54,11 @@ wheels = [
|
|
54
54
|
|
55
55
|
[[package]]
|
56
56
|
name = "certifi"
|
57
|
-
version = "
|
57
|
+
version = "2025.1.31"
|
58
58
|
source = { registry = "https://pypi.org/simple" }
|
59
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
59
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 }
|
60
60
|
wheels = [
|
61
|
-
{ url = "https://files.pythonhosted.org/packages/
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 },
|
62
62
|
]
|
63
63
|
|
64
64
|
[[package]]
|
@@ -202,51 +202,55 @@ wheels = [
|
|
202
202
|
|
203
203
|
[[package]]
|
204
204
|
name = "cryptography"
|
205
|
-
version = "44.0.
|
205
|
+
version = "44.0.1"
|
206
206
|
source = { registry = "https://pypi.org/simple" }
|
207
207
|
dependencies = [
|
208
208
|
{ name = "cffi", marker = "platform_python_implementation != 'PyPy'" },
|
209
209
|
]
|
210
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
210
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c7/67/545c79fe50f7af51dbad56d16b23fe33f63ee6a5d956b3cb68ea110cbe64/cryptography-44.0.1.tar.gz", hash = "sha256:f51f5705ab27898afda1aaa430f34ad90dc117421057782022edf0600bec5f14", size = 710819 }
|
211
211
|
wheels = [
|
212
|
-
{ url = "https://files.pythonhosted.org/packages/
|
213
|
-
{ url = "https://files.pythonhosted.org/packages/
|
214
|
-
{ url = "https://files.pythonhosted.org/packages/
|
215
|
-
{ url = "https://files.pythonhosted.org/packages/
|
216
|
-
{ url = "https://files.pythonhosted.org/packages/
|
217
|
-
{ url = "https://files.pythonhosted.org/packages/
|
218
|
-
{ url = "https://files.pythonhosted.org/packages/
|
219
|
-
{ url = "https://files.pythonhosted.org/packages/
|
220
|
-
{ url = "https://files.pythonhosted.org/packages/
|
221
|
-
{ url = "https://files.pythonhosted.org/packages/
|
222
|
-
{ url = "https://files.pythonhosted.org/packages/
|
223
|
-
{ url = "https://files.pythonhosted.org/packages/
|
224
|
-
{ url = "https://files.pythonhosted.org/packages/
|
225
|
-
{ url = "https://files.pythonhosted.org/packages/
|
226
|
-
{ url = "https://files.pythonhosted.org/packages/
|
227
|
-
{ url = "https://files.pythonhosted.org/packages/
|
228
|
-
{ url = "https://files.pythonhosted.org/packages/
|
229
|
-
{ url = "https://files.pythonhosted.org/packages/
|
230
|
-
{ url = "https://files.pythonhosted.org/packages/
|
231
|
-
{ url = "https://files.pythonhosted.org/packages/
|
232
|
-
{ url = "https://files.pythonhosted.org/packages/
|
233
|
-
{ url = "https://files.pythonhosted.org/packages/
|
234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
235
|
-
{ url = "https://files.pythonhosted.org/packages/
|
236
|
-
{ url = "https://files.pythonhosted.org/packages/
|
237
|
-
{ url = "https://files.pythonhosted.org/packages/
|
212
|
+
{ url = "https://files.pythonhosted.org/packages/72/27/5e3524053b4c8889da65cf7814a9d0d8514a05194a25e1e34f46852ee6eb/cryptography-44.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf688f615c29bfe9dfc44312ca470989279f0e94bb9f631f85e3459af8efc009", size = 6642022 },
|
213
|
+
{ url = "https://files.pythonhosted.org/packages/34/b9/4d1fa8d73ae6ec350012f89c3abfbff19fc95fe5420cf972e12a8d182986/cryptography-44.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd7c7e2d71d908dc0f8d2027e1604102140d84b155e658c20e8ad1304317691f", size = 3943865 },
|
214
|
+
{ url = "https://files.pythonhosted.org/packages/6e/57/371a9f3f3a4500807b5fcd29fec77f418ba27ffc629d88597d0d1049696e/cryptography-44.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:887143b9ff6bad2b7570da75a7fe8bbf5f65276365ac259a5d2d5147a73775f2", size = 4162562 },
|
215
|
+
{ url = "https://files.pythonhosted.org/packages/c5/1d/5b77815e7d9cf1e3166988647f336f87d5634a5ccecec2ffbe08ef8dd481/cryptography-44.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:322eb03ecc62784536bc173f1483e76747aafeb69c8728df48537eb431cd1911", size = 3951923 },
|
216
|
+
{ url = "https://files.pythonhosted.org/packages/28/01/604508cd34a4024467cd4105887cf27da128cba3edd435b54e2395064bfb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:21377472ca4ada2906bc313168c9dc7b1d7ca417b63c1c3011d0c74b7de9ae69", size = 3685194 },
|
217
|
+
{ url = "https://files.pythonhosted.org/packages/c6/3d/d3c55d4f1d24580a236a6753902ef6d8aafd04da942a1ee9efb9dc8fd0cb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:df978682c1504fc93b3209de21aeabf2375cb1571d4e61907b3e7a2540e83026", size = 4187790 },
|
218
|
+
{ url = "https://files.pythonhosted.org/packages/ea/a6/44d63950c8588bfa8594fd234d3d46e93c3841b8e84a066649c566afb972/cryptography-44.0.1-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:eb3889330f2a4a148abead555399ec9a32b13b7c8ba969b72d8e500eb7ef84cd", size = 3951343 },
|
219
|
+
{ url = "https://files.pythonhosted.org/packages/c1/17/f5282661b57301204cbf188254c1a0267dbd8b18f76337f0a7ce1038888c/cryptography-44.0.1-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:8e6a85a93d0642bd774460a86513c5d9d80b5c002ca9693e63f6e540f1815ed0", size = 4187127 },
|
220
|
+
{ url = "https://files.pythonhosted.org/packages/f3/68/abbae29ed4f9d96596687f3ceea8e233f65c9645fbbec68adb7c756bb85a/cryptography-44.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:6f76fdd6fd048576a04c5210d53aa04ca34d2ed63336d4abd306d0cbe298fddf", size = 4070666 },
|
221
|
+
{ url = "https://files.pythonhosted.org/packages/0f/10/cf91691064a9e0a88ae27e31779200b1505d3aee877dbe1e4e0d73b4f155/cryptography-44.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6c8acf6f3d1f47acb2248ec3ea261171a671f3d9428e34ad0357148d492c7864", size = 4288811 },
|
222
|
+
{ url = "https://files.pythonhosted.org/packages/38/78/74ea9eb547d13c34e984e07ec8a473eb55b19c1451fe7fc8077c6a4b0548/cryptography-44.0.1-cp37-abi3-win32.whl", hash = "sha256:24979e9f2040c953a94bf3c6782e67795a4c260734e5264dceea65c8f4bae64a", size = 2771882 },
|
223
|
+
{ url = "https://files.pythonhosted.org/packages/cf/6c/3907271ee485679e15c9f5e93eac6aa318f859b0aed8d369afd636fafa87/cryptography-44.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:fd0ee90072861e276b0ff08bd627abec29e32a53b2be44e41dbcdf87cbee2b00", size = 3206989 },
|
224
|
+
{ url = "https://files.pythonhosted.org/packages/9f/f1/676e69c56a9be9fd1bffa9bc3492366901f6e1f8f4079428b05f1414e65c/cryptography-44.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:a2d8a7045e1ab9b9f803f0d9531ead85f90c5f2859e653b61497228b18452008", size = 6643714 },
|
225
|
+
{ url = "https://files.pythonhosted.org/packages/ba/9f/1775600eb69e72d8f9931a104120f2667107a0ee478f6ad4fe4001559345/cryptography-44.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8272f257cf1cbd3f2e120f14c68bff2b6bdfcc157fafdee84a1b795efd72862", size = 3943269 },
|
226
|
+
{ url = "https://files.pythonhosted.org/packages/25/ba/e00d5ad6b58183829615be7f11f55a7b6baa5a06910faabdc9961527ba44/cryptography-44.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8d181e90a777b63f3f0caa836844a1182f1f265687fac2115fcf245f5fbec3", size = 4166461 },
|
227
|
+
{ url = "https://files.pythonhosted.org/packages/b3/45/690a02c748d719a95ab08b6e4decb9d81e0ec1bac510358f61624c86e8a3/cryptography-44.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:436df4f203482f41aad60ed1813811ac4ab102765ecae7a2bbb1dbb66dcff5a7", size = 3950314 },
|
228
|
+
{ url = "https://files.pythonhosted.org/packages/e6/50/bf8d090911347f9b75adc20f6f6569ed6ca9b9bff552e6e390f53c2a1233/cryptography-44.0.1-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4f422e8c6a28cf8b7f883eb790695d6d45b0c385a2583073f3cec434cc705e1a", size = 3686675 },
|
229
|
+
{ url = "https://files.pythonhosted.org/packages/e1/e7/cfb18011821cc5f9b21efb3f94f3241e3a658d267a3bf3a0f45543858ed8/cryptography-44.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:72198e2b5925155497a5a3e8c216c7fb3e64c16ccee11f0e7da272fa93b35c4c", size = 4190429 },
|
230
|
+
{ url = "https://files.pythonhosted.org/packages/07/ef/77c74d94a8bfc1a8a47b3cafe54af3db537f081742ee7a8a9bd982b62774/cryptography-44.0.1-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:2a46a89ad3e6176223b632056f321bc7de36b9f9b93b2cc1cccf935a3849dc62", size = 3950039 },
|
231
|
+
{ url = "https://files.pythonhosted.org/packages/6d/b9/8be0ff57c4592382b77406269b1e15650c9f1a167f9e34941b8515b97159/cryptography-44.0.1-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:53f23339864b617a3dfc2b0ac8d5c432625c80014c25caac9082314e9de56f41", size = 4189713 },
|
232
|
+
{ url = "https://files.pythonhosted.org/packages/78/e1/4b6ac5f4100545513b0847a4d276fe3c7ce0eacfa73e3b5ebd31776816ee/cryptography-44.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:888fcc3fce0c888785a4876ca55f9f43787f4c5c1cc1e2e0da71ad481ff82c5b", size = 4071193 },
|
233
|
+
{ url = "https://files.pythonhosted.org/packages/3d/cb/afff48ceaed15531eab70445abe500f07f8f96af2bb35d98af6bfa89ebd4/cryptography-44.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:00918d859aa4e57db8299607086f793fa7813ae2ff5a4637e318a25ef82730f7", size = 4289566 },
|
234
|
+
{ url = "https://files.pythonhosted.org/packages/30/6f/4eca9e2e0f13ae459acd1ca7d9f0257ab86e68f44304847610afcb813dc9/cryptography-44.0.1-cp39-abi3-win32.whl", hash = "sha256:9b336599e2cb77b1008cb2ac264b290803ec5e8e89d618a5e978ff5eb6f715d9", size = 2772371 },
|
235
|
+
{ url = "https://files.pythonhosted.org/packages/d2/05/5533d30f53f10239616a357f080892026db2d550a40c393d0a8a7af834a9/cryptography-44.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:e403f7f766ded778ecdb790da786b418a9f2394f36e8cc8b796cc056ab05f44f", size = 3207303 },
|
236
|
+
{ url = "https://files.pythonhosted.org/packages/15/06/507bfb5c7e048114a0185dd65f7814677a2ba285d15705c3d69e660c21d7/cryptography-44.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1f9a92144fa0c877117e9748c74501bea842f93d21ee00b0cf922846d9d0b183", size = 3380782 },
|
237
|
+
{ url = "https://files.pythonhosted.org/packages/e0/f1/7fb4982d59aa86e1a116c812b545e7fc045352be07738ae3fb278835a9a4/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:610a83540765a8d8ce0f351ce42e26e53e1f774a6efb71eb1b41eb01d01c3d12", size = 3888155 },
|
238
|
+
{ url = "https://files.pythonhosted.org/packages/60/7b/cbc203838d3092203493d18b923fbbb1de64e0530b332a713ba376905b0b/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5fed5cd6102bb4eb843e3315d2bf25fede494509bddadb81e03a859c1bc17b83", size = 4106417 },
|
239
|
+
{ url = "https://files.pythonhosted.org/packages/12/c7/2fe59fb085ab418acc82e91e040a6acaa7b1696fcc1c1055317537fbf0d3/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_34_aarch64.whl", hash = "sha256:f4daefc971c2d1f82f03097dc6f216744a6cd2ac0f04c68fb935ea2ba2a0d420", size = 3887540 },
|
240
|
+
{ url = "https://files.pythonhosted.org/packages/48/89/09fc7b115f60f5bd970b80e32244f8e9aeeb9244bf870b63420cec3b5cd5/cryptography-44.0.1-pp310-pypy310_pp73-manylinux_2_34_x86_64.whl", hash = "sha256:94f99f2b943b354a5b6307d7e8d19f5c423a794462bde2bf310c770ba052b1c4", size = 4106040 },
|
241
|
+
{ url = "https://files.pythonhosted.org/packages/2e/38/3fd83c4690dc7d753a442a284b3826ea5e5c380a411443c66421cd823898/cryptography-44.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d9c5b9f698a83c8bd71e0f4d3f9f839ef244798e5ffe96febfa9714717db7af7", size = 3134657 },
|
238
242
|
]
|
239
243
|
|
240
244
|
[[package]]
|
241
245
|
name = "deprecated"
|
242
|
-
version = "1.2.
|
246
|
+
version = "1.2.18"
|
243
247
|
source = { registry = "https://pypi.org/simple" }
|
244
248
|
dependencies = [
|
245
249
|
{ name = "wrapt" },
|
246
250
|
]
|
247
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
251
|
+
sdist = { url = "https://files.pythonhosted.org/packages/98/97/06afe62762c9a8a86af0cfb7bfdab22a43ad17138b07af5b1a58442690a2/deprecated-1.2.18.tar.gz", hash = "sha256:422b6f6d859da6f2ef57857761bfb392480502a64c3028ca9bbe86085d72115d", size = 2928744 }
|
248
252
|
wheels = [
|
249
|
-
{ url = "https://files.pythonhosted.org/packages/
|
253
|
+
{ url = "https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl", hash = "sha256:bd5011788200372a32418f888e326a09ff80d0214bd961147cfed01b5c018eec", size = 9998 },
|
250
254
|
]
|
251
255
|
|
252
256
|
[[package]]
|
@@ -269,11 +273,11 @@ wheels = [
|
|
269
273
|
|
270
274
|
[[package]]
|
271
275
|
name = "dynaconf"
|
272
|
-
version = "3.2.
|
276
|
+
version = "3.2.9"
|
273
277
|
source = { registry = "https://pypi.org/simple" }
|
274
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
278
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6d/8c/47a6542edb5072eebda480308db97a935f1fc5fbeb7659e499d2f53f5f42/dynaconf-3.2.9.tar.gz", hash = "sha256:a612a05c0307b826193b9f7e738f9497c537d5b2668aa2979da3538d7dcdd400", size = 234199 }
|
275
279
|
wheels = [
|
276
|
-
{ url = "https://files.pythonhosted.org/packages/
|
280
|
+
{ url = "https://files.pythonhosted.org/packages/08/2a/ecb4cfe39d999f44d40eb3de996a33944334121e1900f4808c1805b39dec/dynaconf-3.2.9-py2.py3-none-any.whl", hash = "sha256:91f4d87adcf0eea5e97e994e2877ba99642fd86d7e77716a045aa9f39d9186b6", size = 236023 },
|
277
281
|
]
|
278
282
|
|
279
283
|
[[package]]
|
@@ -287,16 +291,16 @@ wheels = [
|
|
287
291
|
|
288
292
|
[[package]]
|
289
293
|
name = "fastapi"
|
290
|
-
version = "0.115.
|
294
|
+
version = "0.115.8"
|
291
295
|
source = { registry = "https://pypi.org/simple" }
|
292
296
|
dependencies = [
|
293
297
|
{ name = "pydantic" },
|
294
298
|
{ name = "starlette" },
|
295
299
|
{ name = "typing-extensions" },
|
296
300
|
]
|
297
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
301
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a2/b2/5a5dc4affdb6661dea100324e19a7721d5dc524b464fe8e366c093fd7d87/fastapi-0.115.8.tar.gz", hash = "sha256:0ce9111231720190473e222cdf0f07f7206ad7e53ea02beb1d2dc36e2f0741e9", size = 295403 }
|
298
302
|
wheels = [
|
299
|
-
{ url = "https://files.pythonhosted.org/packages/
|
303
|
+
{ url = "https://files.pythonhosted.org/packages/8f/7d/2d6ce181d7a5f51dedb8c06206cbf0ec026a99bf145edd309f9e17c3282f/fastapi-0.115.8-py3-none-any.whl", hash = "sha256:753a96dd7e036b34eeef8babdfcfe3f28ff79648f86551eb36bfc1b0bf4a8cbf", size = 94814 },
|
300
304
|
]
|
301
305
|
|
302
306
|
[[package]]
|
@@ -414,7 +418,7 @@ wheels = [
|
|
414
418
|
|
415
419
|
[[package]]
|
416
420
|
name = "hyperpocket"
|
417
|
-
version = "0.
|
421
|
+
version = "0.3.6"
|
418
422
|
source = { editable = "../../hyperpocket" }
|
419
423
|
dependencies = [
|
420
424
|
{ name = "click" },
|
@@ -456,12 +460,13 @@ requires-dist = [
|
|
456
460
|
[package.metadata.requires-dev]
|
457
461
|
dev = [
|
458
462
|
{ name = "pytest", specifier = ">=8.3.4" },
|
463
|
+
{ name = "pytest-cov", specifier = ">=6.0.0" },
|
459
464
|
{ name = "ruff", specifier = ">=0.8.6" },
|
460
465
|
]
|
461
466
|
|
462
467
|
[[package]]
|
463
468
|
name = "hyperpocket-anthropic"
|
464
|
-
version = "0.
|
469
|
+
version = "0.3.6"
|
465
470
|
source = { editable = "." }
|
466
471
|
dependencies = [
|
467
472
|
{ name = "anthropic" },
|
@@ -476,7 +481,7 @@ dev = [
|
|
476
481
|
|
477
482
|
[package.metadata]
|
478
483
|
requires-dist = [
|
479
|
-
{ name = "anthropic", specifier = ">=0.
|
484
|
+
{ name = "anthropic", specifier = ">=0.10.0" },
|
480
485
|
{ name = "hyperpocket", editable = "../../hyperpocket" },
|
481
486
|
]
|
482
487
|
|
@@ -664,20 +669,20 @@ wheels = [
|
|
664
669
|
|
665
670
|
[[package]]
|
666
671
|
name = "playwright"
|
667
|
-
version = "1.
|
672
|
+
version = "1.50.0"
|
668
673
|
source = { registry = "https://pypi.org/simple" }
|
669
674
|
dependencies = [
|
670
675
|
{ name = "greenlet" },
|
671
676
|
{ name = "pyee" },
|
672
677
|
]
|
673
678
|
wheels = [
|
674
|
-
{ url = "https://files.pythonhosted.org/packages/
|
675
|
-
{ url = "https://files.pythonhosted.org/packages/
|
676
|
-
{ url = "https://files.pythonhosted.org/packages/
|
677
|
-
{ url = "https://files.pythonhosted.org/packages/
|
678
|
-
{ url = "https://files.pythonhosted.org/packages/
|
679
|
-
{ url = "https://files.pythonhosted.org/packages/
|
680
|
-
{ url = "https://files.pythonhosted.org/packages/
|
679
|
+
{ url = "https://files.pythonhosted.org/packages/0d/5e/068dea3c96e9c09929b45c92cf7e573403b52a89aa463f89b9da9b87b7a4/playwright-1.50.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:f36d754a6c5bd9bf7f14e8f57a2aea6fd08f39ca4c8476481b9c83e299531148", size = 40277564 },
|
680
|
+
{ url = "https://files.pythonhosted.org/packages/78/85/b3deb3d2add00d2a6ee74bf6f57ccefb30efc400fd1b7b330ba9a3626330/playwright-1.50.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:40f274384591dfd27f2b014596250b2250c843ed1f7f4ef5d2960ecb91b4961e", size = 39521844 },
|
681
|
+
{ url = "https://files.pythonhosted.org/packages/f3/f6/002b3d98df9c84296fea84f070dc0d87c2270b37f423cf076a913370d162/playwright-1.50.0-py3-none-macosx_11_0_universal2.whl", hash = "sha256:9922ef9bcd316995f01e220acffd2d37a463b4ad10fd73e388add03841dfa230", size = 40277563 },
|
682
|
+
{ url = "https://files.pythonhosted.org/packages/b9/63/c9a73736e434df894e484278dddc0bf154312ff8d0f16d516edb790a7d42/playwright-1.50.0-py3-none-manylinux1_x86_64.whl", hash = "sha256:8fc628c492d12b13d1f347137b2ac6c04f98197ff0985ef0403a9a9ee0d39131", size = 45076712 },
|
683
|
+
{ url = "https://files.pythonhosted.org/packages/bd/2c/a54b5a64cc7d1a62f2d944c5977fb3c88e74d76f5cdc7966e717426bce66/playwright-1.50.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcff35f72db2689a79007aee78f1b0621a22e6e3d6c1f58aaa9ac805bf4497c", size = 44493111 },
|
684
|
+
{ url = "https://files.pythonhosted.org/packages/2b/4a/047cbb2ffe1249bd7a56441fc3366fb4a8a1f44bc36a9061d10edfda2c86/playwright-1.50.0-py3-none-win32.whl", hash = "sha256:3b906f4d351260016a8c5cc1e003bb341651ae682f62213b50168ed581c7558a", size = 34784543 },
|
685
|
+
{ url = "https://files.pythonhosted.org/packages/bc/2b/e944e10c9b18e77e43d3bb4d6faa323f6cc27597db37b75bc3fd796adfd5/playwright-1.50.0-py3-none-win_amd64.whl", hash = "sha256:1859423da82de631704d5e3d88602d755462b0906824c1debe140979397d2e8d", size = 34784546 },
|
681
686
|
]
|
682
687
|
|
683
688
|
[[package]]
|
@@ -700,16 +705,16 @@ wheels = [
|
|
700
705
|
|
701
706
|
[[package]]
|
702
707
|
name = "pydantic"
|
703
|
-
version = "2.10.
|
708
|
+
version = "2.10.6"
|
704
709
|
source = { registry = "https://pypi.org/simple" }
|
705
710
|
dependencies = [
|
706
711
|
{ name = "annotated-types" },
|
707
712
|
{ name = "pydantic-core" },
|
708
713
|
{ name = "typing-extensions" },
|
709
714
|
]
|
710
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
715
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b7/ae/d5220c5c52b158b1de7ca89fc5edb72f304a70a4c540c84c8844bf4008de/pydantic-2.10.6.tar.gz", hash = "sha256:ca5daa827cce33de7a42be142548b0096bf05a7e7b365aebfa5f8eeec7128236", size = 761681 }
|
711
716
|
wheels = [
|
712
|
-
{ url = "https://files.pythonhosted.org/packages/
|
717
|
+
{ url = "https://files.pythonhosted.org/packages/f4/3c/8cc1cc84deffa6e25d2d0c688ebb80635dfdbf1dbea3e30c541c8cf4d860/pydantic-2.10.6-py3-none-any.whl", hash = "sha256:427d664bf0b8a2b34ff5dd0f5a18df00591adcee7198fbd71981054cef37b584", size = 431696 },
|
713
718
|
]
|
714
719
|
|
715
720
|
[[package]]
|
@@ -789,19 +794,19 @@ wheels = [
|
|
789
794
|
|
790
795
|
[[package]]
|
791
796
|
name = "pyee"
|
792
|
-
version = "12.
|
797
|
+
version = "12.1.1"
|
793
798
|
source = { registry = "https://pypi.org/simple" }
|
794
799
|
dependencies = [
|
795
800
|
{ name = "typing-extensions" },
|
796
801
|
]
|
797
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
802
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0a/37/8fb6e653597b2b67ef552ed49b438d5398ba3b85a9453f8ada0fd77d455c/pyee-12.1.1.tar.gz", hash = "sha256:bbc33c09e2ff827f74191e3e5bbc6be7da02f627b7ec30d86f5ce1a6fb2424a3", size = 30915 }
|
798
803
|
wheels = [
|
799
|
-
{ url = "https://files.pythonhosted.org/packages/
|
804
|
+
{ url = "https://files.pythonhosted.org/packages/25/68/7e150cba9eeffdeb3c5cecdb6896d70c8edd46ce41c0491e12fb2b2256ff/pyee-12.1.1-py3-none-any.whl", hash = "sha256:18a19c650556bb6b32b406d7f017c8f513aceed1ef7ca618fb65de7bd2d347ef", size = 15527 },
|
800
805
|
]
|
801
806
|
|
802
807
|
[[package]]
|
803
808
|
name = "pygithub"
|
804
|
-
version = "2.
|
809
|
+
version = "2.6.0"
|
805
810
|
source = { registry = "https://pypi.org/simple" }
|
806
811
|
dependencies = [
|
807
812
|
{ name = "deprecated" },
|
@@ -811,9 +816,9 @@ dependencies = [
|
|
811
816
|
{ name = "typing-extensions" },
|
812
817
|
{ name = "urllib3" },
|
813
818
|
]
|
814
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
819
|
+
sdist = { url = "https://files.pythonhosted.org/packages/60/7a/78a40edc07426052eb909f556deb8ae3158c234df49553bd4690bc6c4ba7/pygithub-2.6.0.tar.gz", hash = "sha256:04784fd6f4acfcaf91df5d3f08ef14153709395a34e706850f92337d9914548f", size = 3658095 }
|
815
820
|
wheels = [
|
816
|
-
{ url = "https://files.pythonhosted.org/packages/
|
821
|
+
{ url = "https://files.pythonhosted.org/packages/f3/9e/ba08aa9e1632f8752648126505598b95429fcb7bb884c1eb9de5b2370d8f/PyGithub-2.6.0-py3-none-any.whl", hash = "sha256:22635b245b885413c607bb86393603cadcfdcb67a9b81ce9a64634e64f308084", size = 409218 },
|
817
822
|
]
|
818
823
|
|
819
824
|
[[package]]
|
@@ -869,11 +874,11 @@ wheels = [
|
|
869
874
|
|
870
875
|
[[package]]
|
871
876
|
name = "python-multipart"
|
872
|
-
version = "0.0.
|
877
|
+
version = "0.0.20"
|
873
878
|
source = { registry = "https://pypi.org/simple" }
|
874
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
879
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/87/f44d7c9f274c7ee665a29b885ec97089ec5dc034c7f3fafa03da9e39a09e/python_multipart-0.0.20.tar.gz", hash = "sha256:8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13", size = 37158 }
|
875
880
|
wheels = [
|
876
|
-
{ url = "https://files.pythonhosted.org/packages/
|
881
|
+
{ url = "https://files.pythonhosted.org/packages/45/58/38b5afbc1a800eeea951b9285d3912613f2603bdf897a4ab0f4bd7f405fc/python_multipart-0.0.20-py3-none-any.whl", hash = "sha256:8a62d3a8335e06589fe01f2a3e178cdcc632f3fbe0d492ad9ee0ec35aab1f104", size = 24546 },
|
877
882
|
]
|
878
883
|
|
879
884
|
[[package]]
|
@@ -905,27 +910,27 @@ wheels = [
|
|
905
910
|
|
906
911
|
[[package]]
|
907
912
|
name = "ruff"
|
908
|
-
version = "0.9.
|
913
|
+
version = "0.9.6"
|
909
914
|
source = { registry = "https://pypi.org/simple" }
|
910
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
915
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2a/e1/e265aba384343dd8ddd3083f5e33536cd17e1566c41453a5517b5dd443be/ruff-0.9.6.tar.gz", hash = "sha256:81761592f72b620ec8fa1068a6fd00e98a5ebee342a3642efd84454f3031dca9", size = 3639454 }
|
911
916
|
wheels = [
|
912
|
-
{ url = "https://files.pythonhosted.org/packages/
|
913
|
-
{ url = "https://files.pythonhosted.org/packages/
|
914
|
-
{ url = "https://files.pythonhosted.org/packages/
|
915
|
-
{ url = "https://files.pythonhosted.org/packages/
|
916
|
-
{ url = "https://files.pythonhosted.org/packages/
|
917
|
-
{ url = "https://files.pythonhosted.org/packages/
|
918
|
-
{ url = "https://files.pythonhosted.org/packages/
|
919
|
-
{ url = "https://files.pythonhosted.org/packages/
|
920
|
-
{ url = "https://files.pythonhosted.org/packages/
|
921
|
-
{ url = "https://files.pythonhosted.org/packages/
|
922
|
-
{ url = "https://files.pythonhosted.org/packages/
|
923
|
-
{ url = "https://files.pythonhosted.org/packages/
|
924
|
-
{ url = "https://files.pythonhosted.org/packages/
|
925
|
-
{ url = "https://files.pythonhosted.org/packages/
|
926
|
-
{ url = "https://files.pythonhosted.org/packages/
|
927
|
-
{ url = "https://files.pythonhosted.org/packages/
|
928
|
-
{ url = "https://files.pythonhosted.org/packages/
|
917
|
+
{ url = "https://files.pythonhosted.org/packages/76/e3/3d2c022e687e18cf5d93d6bfa2722d46afc64eaa438c7fbbdd603b3597be/ruff-0.9.6-py3-none-linux_armv6l.whl", hash = "sha256:2f218f356dd2d995839f1941322ff021c72a492c470f0b26a34f844c29cdf5ba", size = 11714128 },
|
918
|
+
{ url = "https://files.pythonhosted.org/packages/e1/22/aff073b70f95c052e5c58153cba735748c9e70107a77d03420d7850710a0/ruff-0.9.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b908ff4df65dad7b251c9968a2e4560836d8f5487c2f0cc238321ed951ea0504", size = 11682539 },
|
919
|
+
{ url = "https://files.pythonhosted.org/packages/75/a7/f5b7390afd98a7918582a3d256cd3e78ba0a26165a467c1820084587cbf9/ruff-0.9.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:b109c0ad2ececf42e75fa99dc4043ff72a357436bb171900714a9ea581ddef83", size = 11132512 },
|
920
|
+
{ url = "https://files.pythonhosted.org/packages/a6/e3/45de13ef65047fea2e33f7e573d848206e15c715e5cd56095589a7733d04/ruff-0.9.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1de4367cca3dac99bcbd15c161404e849bb0bfd543664db39232648dc00112dc", size = 11929275 },
|
921
|
+
{ url = "https://files.pythonhosted.org/packages/7d/f2/23d04cd6c43b2e641ab961ade8d0b5edb212ecebd112506188c91f2a6e6c/ruff-0.9.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac3ee4d7c2c92ddfdaedf0bf31b2b176fa7aa8950efc454628d477394d35638b", size = 11466502 },
|
922
|
+
{ url = "https://files.pythonhosted.org/packages/b5/6f/3a8cf166f2d7f1627dd2201e6cbc4cb81f8b7d58099348f0c1ff7b733792/ruff-0.9.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5dc1edd1775270e6aa2386119aea692039781429f0be1e0949ea5884e011aa8e", size = 12676364 },
|
923
|
+
{ url = "https://files.pythonhosted.org/packages/f5/c4/db52e2189983c70114ff2b7e3997e48c8318af44fe83e1ce9517570a50c6/ruff-0.9.6-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:4a091729086dffa4bd070aa5dab7e39cc6b9d62eb2bef8f3d91172d30d599666", size = 13335518 },
|
924
|
+
{ url = "https://files.pythonhosted.org/packages/66/44/545f8a4d136830f08f4d24324e7db957c5374bf3a3f7a6c0bc7be4623a37/ruff-0.9.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1bbc6808bf7b15796cef0815e1dfb796fbd383e7dbd4334709642649625e7c5", size = 12823287 },
|
925
|
+
{ url = "https://files.pythonhosted.org/packages/c5/26/8208ef9ee7431032c143649a9967c3ae1aae4257d95e6f8519f07309aa66/ruff-0.9.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:589d1d9f25b5754ff230dce914a174a7c951a85a4e9270613a2b74231fdac2f5", size = 14592374 },
|
926
|
+
{ url = "https://files.pythonhosted.org/packages/31/70/e917781e55ff39c5b5208bda384fd397ffd76605e68544d71a7e40944945/ruff-0.9.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc61dd5131742e21103fbbdcad683a8813be0e3c204472d520d9a5021ca8b217", size = 12500173 },
|
927
|
+
{ url = "https://files.pythonhosted.org/packages/84/f5/e4ddee07660f5a9622a9c2b639afd8f3104988dc4f6ba0b73ffacffa9a8c/ruff-0.9.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:5e2d9126161d0357e5c8f30b0bd6168d2c3872372f14481136d13de9937f79b6", size = 11906555 },
|
928
|
+
{ url = "https://files.pythonhosted.org/packages/f1/2b/6ff2fe383667075eef8656b9892e73dd9b119b5e3add51298628b87f6429/ruff-0.9.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:68660eab1a8e65babb5229a1f97b46e3120923757a68b5413d8561f8a85d4897", size = 11538958 },
|
929
|
+
{ url = "https://files.pythonhosted.org/packages/3c/db/98e59e90de45d1eb46649151c10a062d5707b5b7f76f64eb1e29edf6ebb1/ruff-0.9.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c4cae6c4cc7b9b4017c71114115db0445b00a16de3bcde0946273e8392856f08", size = 12117247 },
|
930
|
+
{ url = "https://files.pythonhosted.org/packages/ec/bc/54e38f6d219013a9204a5a2015c09e7a8c36cedcd50a4b01ac69a550b9d9/ruff-0.9.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:19f505b643228b417c1111a2a536424ddde0db4ef9023b9e04a46ed8a1cb4656", size = 12554647 },
|
931
|
+
{ url = "https://files.pythonhosted.org/packages/a5/7d/7b461ab0e2404293c0627125bb70ac642c2e8d55bf590f6fce85f508f1b2/ruff-0.9.6-py3-none-win32.whl", hash = "sha256:194d8402bceef1b31164909540a597e0d913c0e4952015a5b40e28c146121b5d", size = 9949214 },
|
932
|
+
{ url = "https://files.pythonhosted.org/packages/ee/30/c3cee10f915ed75a5c29c1e57311282d1a15855551a64795c1b2bbe5cf37/ruff-0.9.6-py3-none-win_amd64.whl", hash = "sha256:03482d5c09d90d4ee3f40d97578423698ad895c87314c4de39ed2af945633caa", size = 10999914 },
|
933
|
+
{ url = "https://files.pythonhosted.org/packages/e8/a8/d71f44b93e3aa86ae232af1f2126ca7b95c0f515ec135462b3e1f351441c/ruff-0.9.6-py3-none-win_arm64.whl", hash = "sha256:0e2bb706a2be7ddfea4a4af918562fdc1bcb16df255e5fa595bbd800ce322a5a", size = 10177499 },
|
929
934
|
]
|
930
935
|
|
931
936
|
[[package]]
|
@@ -948,14 +953,14 @@ wheels = [
|
|
948
953
|
|
949
954
|
[[package]]
|
950
955
|
name = "starlette"
|
951
|
-
version = "0.
|
956
|
+
version = "0.45.3"
|
952
957
|
source = { registry = "https://pypi.org/simple" }
|
953
958
|
dependencies = [
|
954
959
|
{ name = "anyio" },
|
955
960
|
]
|
956
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
961
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ff/fb/2984a686808b89a6781526129a4b51266f678b2d2b97ab2d325e56116df8/starlette-0.45.3.tar.gz", hash = "sha256:2cbcba2a75806f8a41c722141486f37c28e30a0921c5f6fe4346cb0dcee1302f", size = 2574076 }
|
957
962
|
wheels = [
|
958
|
-
{ url = "https://files.pythonhosted.org/packages/
|
963
|
+
{ url = "https://files.pythonhosted.org/packages/d9/61/f2b52e107b1fc8944b33ef56bf6ac4ebbe16d91b94d2b87ce013bf63fb84/starlette-0.45.3-py3-none-any.whl", hash = "sha256:dfb6d332576f136ec740296c7e8bb8c8a7125044e7c6da30744718880cdd059d", size = 71507 },
|
959
964
|
]
|
960
965
|
|
961
966
|
[[package]]
|
@@ -1026,16 +1031,16 @@ wheels = [
|
|
1026
1031
|
|
1027
1032
|
[[package]]
|
1028
1033
|
name = "uvicorn"
|
1029
|
-
version = "0.
|
1034
|
+
version = "0.34.0"
|
1030
1035
|
source = { registry = "https://pypi.org/simple" }
|
1031
1036
|
dependencies = [
|
1032
1037
|
{ name = "click" },
|
1033
1038
|
{ name = "h11" },
|
1034
1039
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
1035
1040
|
]
|
1036
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1041
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4b/4d/938bd85e5bf2edeec766267a5015ad969730bb91e31b44021dfe8b22df6c/uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9", size = 76568 }
|
1037
1042
|
wheels = [
|
1038
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1043
|
+
{ url = "https://files.pythonhosted.org/packages/61/14/33a3a1352cfa71812a3a21e8c9bfb83f60b0011f5e36f2b1399d51928209/uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4", size = 62315 },
|
1039
1044
|
]
|
1040
1045
|
|
1041
1046
|
[[package]]
|
File without changes
|
File without changes
|
File without changes
|
{hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/hyperpocket_anthropic/__init__.py
RENAMED
File without changes
|
{hyperpocket_anthropic-0.3.5 → hyperpocket_anthropic-0.3.7}/hyperpocket_anthropic/util/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|