weave-python 0.26.1__py3-none-any.whl → 0.27.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 (62) hide show
  1. weave/weaveapi/auth/v1/service_pb2.py +228 -0
  2. weave/weaveapi/auth/v1/service_pb2.pyi +1406 -0
  3. weave/weaveapi/auth/v1/service_pb2_grpc.py +1091 -0
  4. weave/weaveapi/auth/v1/service_pb2_grpc.pyi +606 -0
  5. weave/weaveapi/auth/v1/session_pb2.py +38 -0
  6. weave/weaveapi/auth/v1/session_pb2.pyi +111 -0
  7. weave/weaveapi/auth/v1/session_pb2_grpc.py +2 -0
  8. weave/weaveapi/auth/v1/session_pb2_grpc.pyi +20 -0
  9. weave/weaveapi/auth/v1/usage_pb2.py +52 -0
  10. weave/weaveapi/auth/v1/usage_pb2.pyi +241 -0
  11. weave/weaveapi/auth/v1/usage_pb2_grpc.py +2 -0
  12. weave/weaveapi/auth/v1/usage_pb2_grpc.pyi +20 -0
  13. weave/weaveapi/auth/v1/user_pb2.py +52 -0
  14. weave/weaveapi/auth/v1/user_pb2.pyi +594 -0
  15. weave/weaveapi/auth/v1/user_pb2_grpc.py +2 -0
  16. weave/weaveapi/auth/v1/user_pb2_grpc.pyi +20 -0
  17. weave/weaveapi/generate/v1/configuration_pb2.py +3 -3
  18. weave/weaveapi/generate/v1/generate_pb2.py +2 -2
  19. weave/weaveapi/generate/v1/service_pb2.py +2 -2
  20. weave/weaveapi/mcpregistry/v1/server_pb2.py +2 -2
  21. weave/weaveapi/mcpregistry/v1/service_pb2.py +3 -3
  22. weave/weaveapi/modex/v1/model_pb2.py +58 -0
  23. weave/weaveapi/modex/v1/model_pb2.pyi +642 -0
  24. weave/weaveapi/modex/v1/model_pb2_grpc.py +2 -0
  25. weave/weaveapi/modex/v1/model_pb2_grpc.pyi +20 -0
  26. weave/weaveapi/modex/v1/provider_pb2.py +38 -0
  27. weave/weaveapi/modex/v1/provider_pb2.pyi +91 -0
  28. weave/weaveapi/modex/v1/provider_pb2_grpc.py +2 -0
  29. weave/weaveapi/modex/v1/provider_pb2_grpc.pyi +20 -0
  30. weave/weaveapi/modex/v1/service_pb2.py +180 -0
  31. weave/weaveapi/modex/v1/service_pb2.pyi +1641 -0
  32. weave/weaveapi/modex/v1/service_pb2_grpc.py +602 -0
  33. weave/weaveapi/modex/v1/service_pb2_grpc.pyi +268 -0
  34. weave/weaveapi/payment/v1/invoice_pb2.py +46 -0
  35. weave/weaveapi/payment/v1/invoice_pb2.pyi +349 -0
  36. weave/weaveapi/payment/v1/invoice_pb2_grpc.py +2 -0
  37. weave/weaveapi/payment/v1/invoice_pb2_grpc.pyi +20 -0
  38. weave/weaveapi/payment/v1/service_pb2.py +244 -0
  39. weave/weaveapi/payment/v1/service_pb2.pyi +1492 -0
  40. weave/weaveapi/payment/v1/service_pb2_grpc.py +957 -0
  41. weave/weaveapi/payment/v1/service_pb2_grpc.pyi +572 -0
  42. weave/weaveapi/payment/v1/subscription_pb2.py +59 -0
  43. weave/weaveapi/payment/v1/subscription_pb2.pyi +695 -0
  44. weave/weaveapi/payment/v1/subscription_pb2_grpc.py +2 -0
  45. weave/weaveapi/payment/v1/subscription_pb2_grpc.pyi +20 -0
  46. weave/weaveapi/storage/v1/auth_pb2.py +2 -2
  47. weave/weaveapi/storage/v1/nosql_database_pb2.py +3 -3
  48. weave/weaveapi/storage/v1/object_store_pb2.py +3 -3
  49. weave/weaveapi/storage/v1/service_pb2.py +2 -2
  50. weave/weaveapi/storage/v1/sql_database_pb2.py +3 -3
  51. weave/weaveapi/storage/v1/storage_pb2.py +2 -2
  52. weave/weaveapi/synthesize/v1/dataset_pb2.py +2 -2
  53. weave/weaveapi/synthesize/v1/inline_data_pb2.py +3 -3
  54. weave/weaveapi/synthesize/v1/relationship_pb2.py +3 -3
  55. weave/weaveapi/synthesize/v1/service_pb2.py +2 -2
  56. weave/weaveapi/synthesize/v1/training_pb2.py +3 -3
  57. weave/weavesql/{db → weavedb}/queries.py +1 -1
  58. {weave_python-0.26.1.dist-info → weave_python-0.27.0.dist-info}/METADATA +1 -1
  59. weave_python-0.27.0.dist-info/RECORD +109 -0
  60. weave_python-0.26.1.dist-info/RECORD +0 -69
  61. /weave/weavesql/{db → weavedb}/models.py +0 -0
  62. {weave_python-0.26.1.dist-info → weave_python-0.27.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,20 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ """
5
+
6
+ import abc
7
+ import collections.abc
8
+ import grpc
9
+ import grpc.aio
10
+ import typing
11
+
12
+ _T = typing.TypeVar("_T")
13
+
14
+ class _MaybeAsyncIterator(
15
+ collections.abc.AsyncIterator[_T],
16
+ collections.abc.Iterator[_T],
17
+ metaclass=abc.ABCMeta,
18
+ ): ...
19
+ class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type: ignore[misc, type-arg]
20
+ ...
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/storage/v1/auth.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -12,7 +12,7 @@ from google.protobuf import symbol_database as _symbol_database
12
12
  from google.protobuf.internal import builder as _builder
13
13
 
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
- _runtime_version.Domain.PUBLIC, 6, 31, 1, "", "weaveapi/storage/v1/auth.proto"
15
+ _runtime_version.Domain.PUBLIC, 6, 32, 0, "", "weaveapi/storage/v1/auth.proto"
16
16
  )
17
17
  # @@protoc_insertion_point(imports)
18
18
 
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/storage/v1/nosql_database.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -14,8 +14,8 @@ from google.protobuf.internal import builder as _builder
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  _runtime_version.Domain.PUBLIC,
16
16
  6,
17
- 31,
18
- 1,
17
+ 32,
18
+ 0,
19
19
  "",
20
20
  "weaveapi/storage/v1/nosql_database.proto",
21
21
  )
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/storage/v1/object_store.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -14,8 +14,8 @@ from google.protobuf.internal import builder as _builder
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  _runtime_version.Domain.PUBLIC,
16
16
  6,
17
- 31,
18
- 1,
17
+ 32,
18
+ 0,
19
19
  "",
20
20
  "weaveapi/storage/v1/object_store.proto",
21
21
  )
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/storage/v1/service.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -12,7 +12,7 @@ from google.protobuf import symbol_database as _symbol_database
12
12
  from google.protobuf.internal import builder as _builder
13
13
 
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
- _runtime_version.Domain.PUBLIC, 6, 31, 1, "", "weaveapi/storage/v1/service.proto"
15
+ _runtime_version.Domain.PUBLIC, 6, 32, 0, "", "weaveapi/storage/v1/service.proto"
16
16
  )
17
17
  # @@protoc_insertion_point(imports)
18
18
 
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/storage/v1/sql_database.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -14,8 +14,8 @@ from google.protobuf.internal import builder as _builder
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  _runtime_version.Domain.PUBLIC,
16
16
  6,
17
- 31,
18
- 1,
17
+ 32,
18
+ 0,
19
19
  "",
20
20
  "weaveapi/storage/v1/sql_database.proto",
21
21
  )
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/storage/v1/storage.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -12,7 +12,7 @@ from google.protobuf import symbol_database as _symbol_database
12
12
  from google.protobuf.internal import builder as _builder
13
13
 
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
- _runtime_version.Domain.PUBLIC, 6, 31, 1, "", "weaveapi/storage/v1/storage.proto"
15
+ _runtime_version.Domain.PUBLIC, 6, 32, 0, "", "weaveapi/storage/v1/storage.proto"
16
16
  )
17
17
  # @@protoc_insertion_point(imports)
18
18
 
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/synthesize/v1/dataset.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -12,7 +12,7 @@ from google.protobuf import symbol_database as _symbol_database
12
12
  from google.protobuf.internal import builder as _builder
13
13
 
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
- _runtime_version.Domain.PUBLIC, 6, 31, 1, "", "weaveapi/synthesize/v1/dataset.proto"
15
+ _runtime_version.Domain.PUBLIC, 6, 32, 0, "", "weaveapi/synthesize/v1/dataset.proto"
16
16
  )
17
17
  # @@protoc_insertion_point(imports)
18
18
 
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/synthesize/v1/inline_data.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -14,8 +14,8 @@ from google.protobuf.internal import builder as _builder
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  _runtime_version.Domain.PUBLIC,
16
16
  6,
17
- 31,
18
- 1,
17
+ 32,
18
+ 0,
19
19
  "",
20
20
  "weaveapi/synthesize/v1/inline_data.proto",
21
21
  )
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/synthesize/v1/relationship.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -14,8 +14,8 @@ from google.protobuf.internal import builder as _builder
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  _runtime_version.Domain.PUBLIC,
16
16
  6,
17
- 31,
18
- 1,
17
+ 32,
18
+ 0,
19
19
  "",
20
20
  "weaveapi/synthesize/v1/relationship.proto",
21
21
  )
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/synthesize/v1/service.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -12,7 +12,7 @@ from google.protobuf import symbol_database as _symbol_database
12
12
  from google.protobuf.internal import builder as _builder
13
13
 
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
- _runtime_version.Domain.PUBLIC, 6, 31, 1, "", "weaveapi/synthesize/v1/service.proto"
15
+ _runtime_version.Domain.PUBLIC, 6, 32, 0, "", "weaveapi/synthesize/v1/service.proto"
16
16
  )
17
17
  # @@protoc_insertion_point(imports)
18
18
 
@@ -2,7 +2,7 @@
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
4
  # source: weaveapi/synthesize/v1/training.proto
5
- # Protobuf Python Version: 6.31.1
5
+ # Protobuf Python Version: 6.32.0
6
6
  """Generated protocol buffer code."""
7
7
 
8
8
  from google.protobuf import descriptor as _descriptor
@@ -14,8 +14,8 @@ from google.protobuf.internal import builder as _builder
14
14
  _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  _runtime_version.Domain.PUBLIC,
16
16
  6,
17
- 31,
18
- 1,
17
+ 32,
18
+ 0,
19
19
  "",
20
20
  "weaveapi/synthesize/v1/training.proto",
21
21
  )
@@ -9,7 +9,7 @@ import uuid
9
9
  import sqlalchemy
10
10
  import sqlalchemy.ext.asyncio
11
11
 
12
- from weave.weavesql.db import models
12
+ from weave.weavesql.weavedb import models
13
13
 
14
14
 
15
15
  GET_FOREIGN_KEY_RELATIONSHIPS = """-- name: get_foreign_key_relationships \\:many
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weave-python
3
- Version: 0.26.1
3
+ Version: 0.27.0
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: protobuf>=6.30.2
6
6
  Requires-Dist: sqlalchemy>=2.0.40
@@ -0,0 +1,109 @@
1
+ weave/weaveapi/auth/v1/service_pb2.py,sha256=EVCrfnqv8qvsLCfdB6OeLNeAcWW0mn3QpEy2qbZU6K8,25721
2
+ weave/weaveapi/auth/v1/service_pb2.pyi,sha256=DoAqvdaNTV3cist8tW3Q4f3ycK3A-8M6Hts9VZbaqWc,41380
3
+ weave/weaveapi/auth/v1/service_pb2_grpc.py,sha256=ImK3Ovp6_ixBS6SDa3N6W1NF6xREA9ASYAscqizq9Ks,41686
4
+ weave/weaveapi/auth/v1/service_pb2_grpc.pyi,sha256=qka0VlnkOL1lNSJZus__GA6nQIifdl6w0_Jtg_J3q5A,19728
5
+ weave/weaveapi/auth/v1/session_pb2.py,sha256=xxroTHRTt34fLoGXhiDaLVB0F_CajyORGEePj6ZhIMM,2655
6
+ weave/weaveapi/auth/v1/session_pb2.pyi,sha256=QQ4R6hDNBQUyg6mqUGUMz48UBFJHmThnQf-Qq_5h23s,3242
7
+ weave/weaveapi/auth/v1/session_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
8
+ weave/weaveapi/auth/v1/session_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
9
+ weave/weaveapi/auth/v1/usage_pb2.py,sha256=UoIzSvW8Cr4OPSMaLlwHFXxIniGNqlhh4NRVl2N7lpI,5102
10
+ weave/weaveapi/auth/v1/usage_pb2.pyi,sha256=fbJr4jFoaNWlU-kX7RsACzOinTR2hz0U8JFI6So5SWQ,8032
11
+ weave/weaveapi/auth/v1/usage_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
12
+ weave/weaveapi/auth/v1/usage_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
13
+ weave/weaveapi/auth/v1/user_pb2.py,sha256=lDJzgcVSnCUpAtzz44HgjOCr7_53X_Zr15Wx2DLhmEs,7300
14
+ weave/weaveapi/auth/v1/user_pb2.pyi,sha256=qiA8YQ4WZfrC-W1JZtAo5oS28yE_bA37-qSsPJigebw,18845
15
+ weave/weaveapi/auth/v1/user_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
16
+ weave/weaveapi/auth/v1/user_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
17
+ weave/weaveapi/generate/v1/configuration_pb2.py,sha256=q8jI-as6k_bvXDl4IO0FPJYDqdf8T6VXBsyzO4MVVxo,5358
18
+ weave/weaveapi/generate/v1/configuration_pb2.pyi,sha256=RLZ-6SuRD3uUI3RVbAnkoIwV6qwdN8RkDZnsD3EusjI,11905
19
+ weave/weaveapi/generate/v1/configuration_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
20
+ weave/weaveapi/generate/v1/configuration_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
21
+ weave/weaveapi/generate/v1/generate_pb2.py,sha256=cSDTgKueNfs7m2jj5hiQ38a0SlELIeKeJi4c1sBzZBo,2353
22
+ weave/weaveapi/generate/v1/generate_pb2.pyi,sha256=LetRpyH93scizw1L_WEJyffwbiasEXMxmRacqDpGSO4,1613
23
+ weave/weaveapi/generate/v1/generate_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
24
+ weave/weaveapi/generate/v1/generate_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
25
+ weave/weaveapi/generate/v1/service_pb2.py,sha256=6f8jThDPHyBM5bVZhIYkaSag5TvCHH3x4cVuraWzxFg,6337
26
+ weave/weaveapi/generate/v1/service_pb2.pyi,sha256=havsFKX3wBGgPdJkJUYoWdXHcI8k4qhEgsKIY_3j7Ms,5940
27
+ weave/weaveapi/generate/v1/service_pb2_grpc.py,sha256=RYeAN7Iu2nXFgDZZ8lTFa-Wkuv_R_nAwdPb6xnQ8nC8,9104
28
+ weave/weaveapi/generate/v1/service_pb2_grpc.pyi,sha256=yWf1DPxkhp46NOFobzHMG8a6W-7Rjyqz4UX1Ck-tRCM,4116
29
+ weave/weaveapi/mcpregistry/v1/server_pb2.py,sha256=UgPsQlCjeos4RECOo9EvSAV4wl2kvJJ0-Y9rcWcT65c,3398
30
+ weave/weaveapi/mcpregistry/v1/server_pb2.pyi,sha256=HU3JL5WRNeEXfF4Sncw1zVRyZhuZDbC1EZYyKGZ9t8U,4876
31
+ weave/weaveapi/mcpregistry/v1/server_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
32
+ weave/weaveapi/mcpregistry/v1/server_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
33
+ weave/weaveapi/mcpregistry/v1/service_pb2.py,sha256=Vo2qnwq_yBI4AMhd6x_PAlBaDX1qM2nwbMZBQ-rHWiQ,7253
34
+ weave/weaveapi/mcpregistry/v1/service_pb2.pyi,sha256=CBLf3D1CywYZTXN3CWDUW191ZKK_5sjH_dheUCPN0O0,6108
35
+ weave/weaveapi/mcpregistry/v1/service_pb2_grpc.py,sha256=gGPYVuamgmJAkY0RpWiEPeUBhgPSA5rnPM-O7N8Ao4M,12664
36
+ weave/weaveapi/mcpregistry/v1/service_pb2_grpc.pyi,sha256=cuo0KXoVg2Z2di48jgtkhlW_Pf8gn-tvvnxeKoA71Lw,5418
37
+ weave/weaveapi/modex/v1/model_pb2.py,sha256=ZyFH-fRwzDeBbTC4FdNQRf6GJ9w0ys5eFPWaj_FcboM,8481
38
+ weave/weaveapi/modex/v1/model_pb2.pyi,sha256=vSQld2WPXUsiGEn-5blwfa_IRQMLVzH5oMNgxk2BHMY,20202
39
+ weave/weaveapi/modex/v1/model_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
40
+ weave/weaveapi/modex/v1/model_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
41
+ weave/weaveapi/modex/v1/provider_pb2.py,sha256=wv-5TBymVUYePLNYK9MLjmZrVk7AvNsJGH-I2m9948o,2592
42
+ weave/weaveapi/modex/v1/provider_pb2.pyi,sha256=o_GUx-LFya4dIOvrR3uil5aUB_PGCkylL3jO1F2FuuY,2676
43
+ weave/weaveapi/modex/v1/provider_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
44
+ weave/weaveapi/modex/v1/provider_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
45
+ weave/weaveapi/modex/v1/service_pb2.py,sha256=j7E_3xAWISFEBZabTwlOUA-RnM7HQoEiXarRMnP0l-g,24088
46
+ weave/weaveapi/modex/v1/service_pb2.pyi,sha256=k5ZIBAYEIWNmT_1CxxA5UIUGtWbYGLj2PCGD51lAHsk,50560
47
+ weave/weaveapi/modex/v1/service_pb2_grpc.py,sha256=8Oq7LXPwKs_SsvlfGK-8ZlVYsYSaeb4AJawcQlBjGv4,23483
48
+ weave/weaveapi/modex/v1/service_pb2_grpc.pyi,sha256=CQwER5M_E1tdyZ45s7CrmtJj1uWNlKegK4xNjo3Tqqg,9362
49
+ weave/weaveapi/payment/v1/invoice_pb2.py,sha256=uVEHaO1Le9NIKfa9r89twoA-JJIzEymfsXROFbhw30s,5295
50
+ weave/weaveapi/payment/v1/invoice_pb2.pyi,sha256=4Go0oUfcQ209EgM6pq-xcI211AoFU8-gElE5ZqXjq-s,10816
51
+ weave/weaveapi/payment/v1/invoice_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
52
+ weave/weaveapi/payment/v1/invoice_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
53
+ weave/weaveapi/payment/v1/service_pb2.py,sha256=N06Qgx4Qkz-xgU-iW8cNe2yXzWdMjwgSf0Gv1_PBBfI,28307
54
+ weave/weaveapi/payment/v1/service_pb2.pyi,sha256=_gdYgI0Z_gB2MFoC9EzZcoefZz24lfrWhMTFjSB31UU,45933
55
+ weave/weaveapi/payment/v1/service_pb2_grpc.py,sha256=M4aRmjzJltHLw4J7svJVzDOKbWtjPP4GXhA3S5OwNmM,37856
56
+ weave/weaveapi/payment/v1/service_pb2_grpc.pyi,sha256=ifDSLdu4oH0xKoJu8KkGQ8D7aAv76CqZppqP89tHUf0,18851
57
+ weave/weaveapi/payment/v1/subscription_pb2.py,sha256=MuM6qOzJFFK_red9z8HUgTps5sha5bg1r0S9lATbS-E,8688
58
+ weave/weaveapi/payment/v1/subscription_pb2.pyi,sha256=f17Gxw-jT5PhESka-GFsgDf93QGxd_ivg_dPQn6CBcc,21166
59
+ weave/weaveapi/payment/v1/subscription_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
60
+ weave/weaveapi/payment/v1/subscription_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
61
+ weave/weaveapi/storage/v1/auth_pb2.py,sha256=AtywFJSY1k0Li4o8Av160mtQO7fUnFkW9wGmpX6tIVY,2134
62
+ weave/weaveapi/storage/v1/auth_pb2.pyi,sha256=yXzwWvzYGzC4TPLIIWvS9OdJVG36lXwzKTYdMTup4OY,1113
63
+ weave/weaveapi/storage/v1/auth_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
64
+ weave/weaveapi/storage/v1/auth_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
65
+ weave/weaveapi/storage/v1/nosql_database_pb2.py,sha256=sRGKiwapCWjIcImdgylcguwfnJObazWeMKLyVMCZzGI,5616
66
+ weave/weaveapi/storage/v1/nosql_database_pb2.pyi,sha256=yCa5QVhKzR1_jaocml28krRa7DNjKSSDGhuzFfcqtHE,11925
67
+ weave/weaveapi/storage/v1/nosql_database_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
68
+ weave/weaveapi/storage/v1/nosql_database_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
69
+ weave/weaveapi/storage/v1/object_store_pb2.py,sha256=0HY63aYedYUQWdy-LcoHADKprI9l6hv8zzCfXQLx2Xo,3690
70
+ weave/weaveapi/storage/v1/object_store_pb2.pyi,sha256=KHrTpSlwEN1savn-30d4Bo5VMm_92zkStBqQQsFdVjU,6660
71
+ weave/weaveapi/storage/v1/object_store_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
72
+ weave/weaveapi/storage/v1/object_store_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
73
+ weave/weaveapi/storage/v1/service_pb2.py,sha256=a-cy6aPM90uzyIIqFw9iBt41AVY4dbvyBou3MOeBM_w,7509
74
+ weave/weaveapi/storage/v1/service_pb2.pyi,sha256=bLt_DKIzZ_1wn24Mo3H-7SNoKk22C0X7GHRuKwovKro,16415
75
+ weave/weaveapi/storage/v1/service_pb2_grpc.py,sha256=ZMxsN0teDpQw5VaP0JDX13Zc-N5qxrxW4--Ws2BQDWI,12495
76
+ weave/weaveapi/storage/v1/service_pb2_grpc.pyi,sha256=-GC3h1CpS10tZQXoXB4YPKFNo6_6gX4YyWel6Kn1D0A,6684
77
+ weave/weaveapi/storage/v1/sql_database_pb2.py,sha256=PQFmhyZ4fiNvhNIxvzvaopOhwWQLpizwEzWABM4y9xs,5997
78
+ weave/weaveapi/storage/v1/sql_database_pb2.pyi,sha256=IaYOfnqr_cEWKkP3ksJGheWRdqKtHIoYbyLmMQCynnQ,12853
79
+ weave/weaveapi/storage/v1/sql_database_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
80
+ weave/weaveapi/storage/v1/sql_database_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
81
+ weave/weaveapi/storage/v1/storage_pb2.py,sha256=_mcZh396KtBzY_-5r7P7HlFBMmaRGgVZ66LJO_ZlNU4,2600
82
+ weave/weaveapi/storage/v1/storage_pb2.pyi,sha256=xhYhGhKVP_yKTvtOhGYc2jJrbhrKVZM9N5vN0RWgd6s,2631
83
+ weave/weaveapi/storage/v1/storage_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
84
+ weave/weaveapi/storage/v1/storage_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
85
+ weave/weaveapi/synthesize/v1/dataset_pb2.py,sha256=JEsf7JWcQIokpeRdwUp8RM8jbfuTym68kNTrdZGlRHY,3666
86
+ weave/weaveapi/synthesize/v1/dataset_pb2.pyi,sha256=JI4U2Sg2kS_nUHT9K6Klxe3mVd6P6juJ8dLK6g4FHY8,5552
87
+ weave/weaveapi/synthesize/v1/dataset_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
88
+ weave/weaveapi/synthesize/v1/dataset_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
89
+ weave/weaveapi/synthesize/v1/inline_data_pb2.py,sha256=l5uMCgXtHEKLmTO0y2_ZQL3jGTXhoPzN_wLguoQn1og,2588
90
+ weave/weaveapi/synthesize/v1/inline_data_pb2.pyi,sha256=Zoe2vb-OpUIBitkRsHAyfwDhdrOJLnY-wayOzSZdqVI,2347
91
+ weave/weaveapi/synthesize/v1/inline_data_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
92
+ weave/weaveapi/synthesize/v1/inline_data_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
93
+ weave/weaveapi/synthesize/v1/relationship_pb2.py,sha256=_7Tivl5jX0D6LQVPrHauudQMhDiT-dWPdzLUHHkyxx4,3116
94
+ weave/weaveapi/synthesize/v1/relationship_pb2.pyi,sha256=grfB6yHo8hLsqB3pejjlUixPBZGVbKxDQwNAwo1__AM,4594
95
+ weave/weaveapi/synthesize/v1/relationship_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
96
+ weave/weaveapi/synthesize/v1/relationship_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
97
+ weave/weaveapi/synthesize/v1/service_pb2.py,sha256=z6T4lftog-HdVNlibXATzAJNRZXy0vsotolr2XSN2Dg,6659
98
+ weave/weaveapi/synthesize/v1/service_pb2.pyi,sha256=ZaBzR6Wug9Mci_LTT67YbprG__2_iWsDLazlc3pcbJU,7524
99
+ weave/weaveapi/synthesize/v1/service_pb2_grpc.py,sha256=770CZOF6q0x284xjaSP71l_wGuv3Mf2y2JLLR2tSg7w,8944
100
+ weave/weaveapi/synthesize/v1/service_pb2_grpc.pyi,sha256=9jnMGVPvOwfsGHInJHchb58Nmcb9uenHbAp7-mZ6G4Y,3984
101
+ weave/weaveapi/synthesize/v1/training_pb2.py,sha256=ReRvKXUPMvoauYiCs1ePeMtnkY3JLJHc2AoAkWT07XA,3671
102
+ weave/weaveapi/synthesize/v1/training_pb2.pyi,sha256=dc6vNjltz7KlvpeIjmvBirj_hPzprjOanZb2sutjvpA,5338
103
+ weave/weaveapi/synthesize/v1/training_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
104
+ weave/weaveapi/synthesize/v1/training_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
105
+ weave/weavesql/weavedb/models.py,sha256=Sjk-LZsw_W2e5idnRGPdm0DQt8RrV8uvj1AcN4FfQZ4,2854
106
+ weave/weavesql/weavedb/queries.py,sha256=UgDI1iZVNuRXlGnBdFCESPA4O4_QFJPRUQzD5H0gKJ0,9953
107
+ weave_python-0.27.0.dist-info/METADATA,sha256=tOu5rLYJEDaAlGng_ERjgerl8Ya2gCRVyL8a2h5BeV4,147
108
+ weave_python-0.27.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
109
+ weave_python-0.27.0.dist-info/RECORD,,
@@ -1,69 +0,0 @@
1
- weave/weaveapi/generate/v1/configuration_pb2.py,sha256=9v0oHALT-Olx5QDb-hwofdVSe3vDqP8se2TilwIUrr4,5358
2
- weave/weaveapi/generate/v1/configuration_pb2.pyi,sha256=RLZ-6SuRD3uUI3RVbAnkoIwV6qwdN8RkDZnsD3EusjI,11905
3
- weave/weaveapi/generate/v1/configuration_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
4
- weave/weaveapi/generate/v1/configuration_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
5
- weave/weaveapi/generate/v1/generate_pb2.py,sha256=5zphyVqbk6eoOuNniXOAhQQD5IM1f-ziEmI80Eig2CA,2353
6
- weave/weaveapi/generate/v1/generate_pb2.pyi,sha256=LetRpyH93scizw1L_WEJyffwbiasEXMxmRacqDpGSO4,1613
7
- weave/weaveapi/generate/v1/generate_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
8
- weave/weaveapi/generate/v1/generate_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
9
- weave/weaveapi/generate/v1/service_pb2.py,sha256=84apm82LaymEKfCSOY-pbYcOWwTSEZeOTj-oTLbI47E,6337
10
- weave/weaveapi/generate/v1/service_pb2.pyi,sha256=havsFKX3wBGgPdJkJUYoWdXHcI8k4qhEgsKIY_3j7Ms,5940
11
- weave/weaveapi/generate/v1/service_pb2_grpc.py,sha256=RYeAN7Iu2nXFgDZZ8lTFa-Wkuv_R_nAwdPb6xnQ8nC8,9104
12
- weave/weaveapi/generate/v1/service_pb2_grpc.pyi,sha256=yWf1DPxkhp46NOFobzHMG8a6W-7Rjyqz4UX1Ck-tRCM,4116
13
- weave/weaveapi/mcpregistry/v1/server_pb2.py,sha256=VBJ2hFrBjkg1s064cFfQIO_R6WskCj-fQLW0wd0wAi0,3398
14
- weave/weaveapi/mcpregistry/v1/server_pb2.pyi,sha256=HU3JL5WRNeEXfF4Sncw1zVRyZhuZDbC1EZYyKGZ9t8U,4876
15
- weave/weaveapi/mcpregistry/v1/server_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
16
- weave/weaveapi/mcpregistry/v1/server_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
17
- weave/weaveapi/mcpregistry/v1/service_pb2.py,sha256=_RAdA4zyzeXFznv5l-jAWAnI1goL84xIErU84oMYxpo,7253
18
- weave/weaveapi/mcpregistry/v1/service_pb2.pyi,sha256=CBLf3D1CywYZTXN3CWDUW191ZKK_5sjH_dheUCPN0O0,6108
19
- weave/weaveapi/mcpregistry/v1/service_pb2_grpc.py,sha256=gGPYVuamgmJAkY0RpWiEPeUBhgPSA5rnPM-O7N8Ao4M,12664
20
- weave/weaveapi/mcpregistry/v1/service_pb2_grpc.pyi,sha256=cuo0KXoVg2Z2di48jgtkhlW_Pf8gn-tvvnxeKoA71Lw,5418
21
- weave/weaveapi/storage/v1/auth_pb2.py,sha256=H7v5QRcQQGB-90N4pZGCj6_HI5ArSIHdmazOBYXMhkI,2134
22
- weave/weaveapi/storage/v1/auth_pb2.pyi,sha256=yXzwWvzYGzC4TPLIIWvS9OdJVG36lXwzKTYdMTup4OY,1113
23
- weave/weaveapi/storage/v1/auth_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
24
- weave/weaveapi/storage/v1/auth_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
25
- weave/weaveapi/storage/v1/nosql_database_pb2.py,sha256=nMONJXqFUHVwx6QCVLnQrqQF8h3bhXto-CTMTP1oSGc,5616
26
- weave/weaveapi/storage/v1/nosql_database_pb2.pyi,sha256=yCa5QVhKzR1_jaocml28krRa7DNjKSSDGhuzFfcqtHE,11925
27
- weave/weaveapi/storage/v1/nosql_database_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
28
- weave/weaveapi/storage/v1/nosql_database_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
29
- weave/weaveapi/storage/v1/object_store_pb2.py,sha256=3L6mJPHrtrCpABXvRoO0Xw9k9b8eiE47L0jn-8_LAMI,3690
30
- weave/weaveapi/storage/v1/object_store_pb2.pyi,sha256=KHrTpSlwEN1savn-30d4Bo5VMm_92zkStBqQQsFdVjU,6660
31
- weave/weaveapi/storage/v1/object_store_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
32
- weave/weaveapi/storage/v1/object_store_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
33
- weave/weaveapi/storage/v1/service_pb2.py,sha256=hYxICYqEm-Bpc2-YD2rAQBzp78daED8yxAyGzXyX_is,7509
34
- weave/weaveapi/storage/v1/service_pb2.pyi,sha256=bLt_DKIzZ_1wn24Mo3H-7SNoKk22C0X7GHRuKwovKro,16415
35
- weave/weaveapi/storage/v1/service_pb2_grpc.py,sha256=ZMxsN0teDpQw5VaP0JDX13Zc-N5qxrxW4--Ws2BQDWI,12495
36
- weave/weaveapi/storage/v1/service_pb2_grpc.pyi,sha256=-GC3h1CpS10tZQXoXB4YPKFNo6_6gX4YyWel6Kn1D0A,6684
37
- weave/weaveapi/storage/v1/sql_database_pb2.py,sha256=dUoR5-hRHv9M0EDPosU94zNGe_mxn6BGeiwhCPjohuY,5997
38
- weave/weaveapi/storage/v1/sql_database_pb2.pyi,sha256=IaYOfnqr_cEWKkP3ksJGheWRdqKtHIoYbyLmMQCynnQ,12853
39
- weave/weaveapi/storage/v1/sql_database_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
40
- weave/weaveapi/storage/v1/sql_database_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
41
- weave/weaveapi/storage/v1/storage_pb2.py,sha256=X0D44MS3WSPQS1rSlGyl2B-bM9gq34Nt5ZdDcOe3deE,2600
42
- weave/weaveapi/storage/v1/storage_pb2.pyi,sha256=xhYhGhKVP_yKTvtOhGYc2jJrbhrKVZM9N5vN0RWgd6s,2631
43
- weave/weaveapi/storage/v1/storage_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
44
- weave/weaveapi/storage/v1/storage_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
45
- weave/weaveapi/synthesize/v1/dataset_pb2.py,sha256=1DA3pcJlVZGeB-S0BWcHjCWoXWn-QppZdE_qpaCHIt8,3666
46
- weave/weaveapi/synthesize/v1/dataset_pb2.pyi,sha256=JI4U2Sg2kS_nUHT9K6Klxe3mVd6P6juJ8dLK6g4FHY8,5552
47
- weave/weaveapi/synthesize/v1/dataset_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
48
- weave/weaveapi/synthesize/v1/dataset_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
49
- weave/weaveapi/synthesize/v1/inline_data_pb2.py,sha256=k7R4b44U9hwBA7POHG6nLIZxIFI3-kUOHJErM_v5yy8,2588
50
- weave/weaveapi/synthesize/v1/inline_data_pb2.pyi,sha256=Zoe2vb-OpUIBitkRsHAyfwDhdrOJLnY-wayOzSZdqVI,2347
51
- weave/weaveapi/synthesize/v1/inline_data_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
52
- weave/weaveapi/synthesize/v1/inline_data_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
53
- weave/weaveapi/synthesize/v1/relationship_pb2.py,sha256=lTsVKcVONkOgL2a9aWCOHnB7pER_rCya_UDNd6dmEQc,3116
54
- weave/weaveapi/synthesize/v1/relationship_pb2.pyi,sha256=grfB6yHo8hLsqB3pejjlUixPBZGVbKxDQwNAwo1__AM,4594
55
- weave/weaveapi/synthesize/v1/relationship_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
56
- weave/weaveapi/synthesize/v1/relationship_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
57
- weave/weaveapi/synthesize/v1/service_pb2.py,sha256=i6rSytbRPAtBUS0lASO26-_d-9Or9IB7aumWRX3Oi3U,6659
58
- weave/weaveapi/synthesize/v1/service_pb2.pyi,sha256=ZaBzR6Wug9Mci_LTT67YbprG__2_iWsDLazlc3pcbJU,7524
59
- weave/weaveapi/synthesize/v1/service_pb2_grpc.py,sha256=770CZOF6q0x284xjaSP71l_wGuv3Mf2y2JLLR2tSg7w,8944
60
- weave/weaveapi/synthesize/v1/service_pb2_grpc.pyi,sha256=9jnMGVPvOwfsGHInJHchb58Nmcb9uenHbAp7-mZ6G4Y,3984
61
- weave/weaveapi/synthesize/v1/training_pb2.py,sha256=toBTP6e7U60ZTQgvFJyCALMCNFkv0AMt0w5R3RdjpTM,3671
62
- weave/weaveapi/synthesize/v1/training_pb2.pyi,sha256=dc6vNjltz7KlvpeIjmvBirj_hPzprjOanZb2sutjvpA,5338
63
- weave/weaveapi/synthesize/v1/training_pb2_grpc.py,sha256=fdRE784m723PjH1jxpy3TgXFFaFZ4gLdJHbKGuy-4F4,146
64
- weave/weaveapi/synthesize/v1/training_pb2_grpc.pyi,sha256=tmiULj9IAvsKMwNziEsyw7EhR2IT_s_Lv5yaSy9bUE4,427
65
- weave/weavesql/db/models.py,sha256=Sjk-LZsw_W2e5idnRGPdm0DQt8RrV8uvj1AcN4FfQZ4,2854
66
- weave/weavesql/db/queries.py,sha256=DblTHMnLj8UtUDqqX7c4YoQrAy4T4nMJXWaEPO9GKlo,9948
67
- weave_python-0.26.1.dist-info/METADATA,sha256=KrQHqoY0c9L5UndA_OswSagfCVCD3tD8Ro-CEU72r5s,147
68
- weave_python-0.26.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
69
- weave_python-0.26.1.dist-info/RECORD,,
File without changes