weave-python 0.37.0__tar.gz → 0.38.0__tar.gz

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 (135) hide show
  1. {weave_python-0.37.0 → weave_python-0.38.0}/.github/workflows/generate.yaml +2 -2
  2. {weave_python-0.37.0 → weave_python-0.38.0}/PKG-INFO +1 -1
  3. weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2.py +107 -0
  4. weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2.pyi +649 -0
  5. weave_python-0.38.0/weave/weaveapi/consolidation/v1/service_pb2.py +79 -0
  6. weave_python-0.38.0/weave/weaveapi/consolidation/v1/service_pb2_grpc.py +275 -0
  7. weave_python-0.38.0/weave/weaveapi/consolidation/v1/service_pb2_grpc.pyi +130 -0
  8. weave_python-0.38.0/weave/weaveapi/inference/v1/service_pb2.pyi +8 -0
  9. weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2.py +419 -0
  10. weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2.pyi +3348 -0
  11. weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2.py +158 -0
  12. weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2.pyi +8 -0
  13. weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2_grpc.py +933 -0
  14. weave_python-0.38.0/weave/weaveapi/ingestion/v1/service_pb2_grpc.pyi +347 -0
  15. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/model/v1/model_pb2.py +7 -5
  16. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/model/v1/model_pb2.pyi +67 -0
  17. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/model/v1/service_pb2.py +27 -3
  18. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/model/v1/service_pb2.pyi +119 -0
  19. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/model/v1/service_pb2_grpc.py +94 -0
  20. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/model/v1/service_pb2_grpc.pyi +34 -0
  21. weave_python-0.38.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py +2 -0
  22. weave_python-0.38.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi +21 -0
  23. weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2.py +193 -0
  24. weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2.pyi +1103 -0
  25. weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.py +2 -0
  26. weave_python-0.38.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.pyi +21 -0
  27. weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2.py +58 -0
  28. weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2.pyi +8 -0
  29. weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2_grpc.py +181 -0
  30. weave_python-0.38.0/weave/weaveapi/retrieval/v1/service_pb2_grpc.pyi +88 -0
  31. weave_python-0.38.0/weave/weaveapi/task/v1/task_pb2_grpc.py +2 -0
  32. weave_python-0.38.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi +21 -0
  33. weave_python-0.38.0/weave/weavesql/weavedb/consolidation.py +1006 -0
  34. weave_python-0.38.0/weave/weavesql/weavedb/document_security.py +573 -0
  35. weave_python-0.38.0/weave/weavesql/weavedb/ingestion.py +5777 -0
  36. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/models.py +225 -0
  37. weave_python-0.38.0/weave/weavesql/weavedb/retrieval.py +1720 -0
  38. {weave_python-0.37.0 → weave_python-0.38.0}/.github/runs-on.yml +0 -0
  39. {weave_python-0.37.0 → weave_python-0.38.0}/.github/workflows/format-lint.yaml +0 -0
  40. {weave_python-0.37.0 → weave_python-0.38.0}/.github/workflows/release.yaml +0 -0
  41. {weave_python-0.37.0 → weave_python-0.38.0}/.gitignore +0 -0
  42. {weave_python-0.37.0 → weave_python-0.38.0}/.python-version +0 -0
  43. {weave_python-0.37.0 → weave_python-0.38.0}/LICENSE +0 -0
  44. {weave_python-0.37.0 → weave_python-0.38.0}/README.md +0 -0
  45. {weave_python-0.37.0 → weave_python-0.38.0}/Taskfile.yaml +0 -0
  46. {weave_python-0.37.0 → weave_python-0.38.0}/buf.gen.yaml +0 -0
  47. {weave_python-0.37.0 → weave_python-0.38.0}/pyproject.toml +0 -0
  48. {weave_python-0.37.0 → weave_python-0.38.0}/renovate.json +0 -0
  49. {weave_python-0.37.0 → weave_python-0.38.0}/tools/sqlcgen/README.md +0 -0
  50. {weave_python-0.37.0 → weave_python-0.38.0}/tools/sqlcgen/sqlcgen.py +0 -0
  51. {weave_python-0.37.0 → weave_python-0.38.0}/tools/sqlcgen/test_sqlcgen.py +0 -0
  52. {weave_python-0.37.0 → weave_python-0.38.0}/uv.lock +0 -0
  53. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2.py +0 -0
  54. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2.pyi +0 -0
  55. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2_grpc.py +0 -0
  56. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/event_pb2_grpc.pyi +0 -0
  57. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2.py +0 -0
  58. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2.pyi +0 -0
  59. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2_grpc.py +0 -0
  60. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/message_pb2_grpc.pyi +0 -0
  61. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2.py +0 -0
  62. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2.pyi +0 -0
  63. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2_grpc.py +0 -0
  64. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/process_pb2_grpc.pyi +0 -0
  65. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2.py +0 -0
  66. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2.pyi +0 -0
  67. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2_grpc.py +0 -0
  68. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/run_pb2_grpc.pyi +0 -0
  69. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2.py +0 -0
  70. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2.pyi +0 -0
  71. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2_grpc.py +0 -0
  72. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/atc/v1/service_pb2_grpc.pyi +0 -0
  73. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/chat_pb2.py +0 -0
  74. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/chat_pb2.pyi +0 -0
  75. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/chat_pb2_grpc.py +0 -0
  76. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/chat_pb2_grpc.pyi +0 -0
  77. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/service_pb2.py +0 -0
  78. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/service_pb2.pyi +0 -0
  79. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/service_pb2_grpc.py +0 -0
  80. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/chat/v1/service_pb2_grpc.pyi +0 -0
  81. /weave_python-0.37.0/weave/weaveapi/inference/v1/inference_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2_grpc.py +0 -0
  82. /weave_python-0.37.0/weave/weaveapi/inference/v1/inference_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/consolidation/v1/consolidation_pb2_grpc.pyi +0 -0
  83. {weave_python-0.37.0/weave/weaveapi/inference → weave_python-0.38.0/weave/weaveapi/consolidation}/v1/service_pb2.pyi +0 -0
  84. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/inference_pb2.py +0 -0
  85. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/inference_pb2.pyi +0 -0
  86. /weave_python-0.37.0/weave/weaveapi/model/v1/model_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/inference/v1/inference_pb2_grpc.py +0 -0
  87. /weave_python-0.37.0/weave/weaveapi/model/v1/model_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/inference/v1/inference_pb2_grpc.pyi +0 -0
  88. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/service_pb2.py +0 -0
  89. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/service_pb2_grpc.py +0 -0
  90. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/inference/v1/service_pb2_grpc.pyi +0 -0
  91. /weave_python-0.37.0/weave/weaveapi/organization/v1/organization_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2_grpc.py +0 -0
  92. /weave_python-0.37.0/weave/weaveapi/organization/v1/organization_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/ingestion/v1/ingestion_pb2_grpc.pyi +0 -0
  93. /weave_python-0.37.0/weave/weaveapi/project/v1/project_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/model/v1/model_pb2_grpc.py +0 -0
  94. /weave_python-0.37.0/weave/weaveapi/project/v1/project_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/model/v1/model_pb2_grpc.pyi +0 -0
  95. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/organization/v1/organization_pb2.py +0 -0
  96. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/organization/v1/organization_pb2.pyi +0 -0
  97. /weave_python-0.37.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/organization/v1/organization_pb2_grpc.py +0 -0
  98. /weave_python-0.37.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/organization/v1/organization_pb2_grpc.pyi +0 -0
  99. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/organization/v1/service_pb2.py +0 -0
  100. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/organization/v1/service_pb2.pyi +0 -0
  101. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/organization/v1/service_pb2_grpc.py +0 -0
  102. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/organization/v1/service_pb2_grpc.pyi +0 -0
  103. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/project_pb2.py +0 -0
  104. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/project_pb2.pyi +0 -0
  105. /weave_python-0.37.0/weave/weaveapi/task/v1/task_pb2_grpc.py → /weave_python-0.38.0/weave/weaveapi/project/v1/project_pb2_grpc.py +0 -0
  106. /weave_python-0.37.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi → /weave_python-0.38.0/weave/weaveapi/project/v1/project_pb2_grpc.pyi +0 -0
  107. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2.py +0 -0
  108. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2.pyi +0 -0
  109. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2_grpc.py +0 -0
  110. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/project/v1/service_pb2_grpc.pyi +0 -0
  111. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/provider_pb2.py +0 -0
  112. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/provider_pb2.pyi +0 -0
  113. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2.py +0 -0
  114. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2.pyi +0 -0
  115. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2_grpc.py +0 -0
  116. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/provider/v1/service_pb2_grpc.pyi +0 -0
  117. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2.py +0 -0
  118. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2.pyi +0 -0
  119. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2_grpc.py +0 -0
  120. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/service_pb2_grpc.pyi +0 -0
  121. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/task_pb2.py +0 -0
  122. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weaveapi/task/v1/task_pb2.pyi +0 -0
  123. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/event.py +0 -0
  124. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/inspection.py +0 -0
  125. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/mailbox.py +0 -0
  126. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/models.py +0 -0
  127. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/run_template.py +0 -0
  128. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/snapshot.py +0 -0
  129. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/atcdb/team.py +0 -0
  130. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/chat.py +0 -0
  131. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/model_catalog.py +0 -0
  132. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/organization.py +0 -0
  133. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/project.py +0 -0
  134. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/provider.py +0 -0
  135. {weave_python-0.37.0 → weave_python-0.38.0}/weave/weavesql/weavedb/task.py +0 -0
@@ -97,7 +97,7 @@ jobs:
97
97
  repo-token: ${{ secrets.GITHUB_TOKEN }}
98
98
 
99
99
  - name: Setup uv
100
- uses: astral-sh/setup-uv@v7
100
+ uses: astral-sh/setup-uv@v8.1.0
101
101
  with:
102
102
  cache-dependency-glob: "uv.lock"
103
103
  enable-cache: true
@@ -134,7 +134,7 @@ jobs:
134
134
  - name: Run uv sync
135
135
  run: uv sync
136
136
 
137
- - uses: astral-sh/ruff-action@v3
137
+ - uses: astral-sh/ruff-action@v4.0.0
138
138
  with:
139
139
  args: "--version"
140
140
  - run: ruff check --fix
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weave-python
3
- Version: 0.37.0
3
+ Version: 0.38.0
4
4
  Author: Weave Labs
5
5
  License: FCL-1.0-ALv2
6
6
  License-File: LICENSE
@@ -0,0 +1,107 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: weaveapi/consolidation/v1/consolidation.proto
5
+ # Protobuf Python Version: 7.34.1
6
+ """Generated protocol buffer code."""
7
+
8
+ from google.protobuf import descriptor as _descriptor
9
+ from google.protobuf import descriptor_pool as _descriptor_pool
10
+ from google.protobuf import runtime_version as _runtime_version
11
+ from google.protobuf import symbol_database as _symbol_database
12
+ from google.protobuf.internal import builder as _builder
13
+
14
+ _runtime_version.ValidateProtobufRuntimeVersion(
15
+ _runtime_version.Domain.PUBLIC,
16
+ 7,
17
+ 34,
18
+ 1,
19
+ "",
20
+ "weaveapi/consolidation/v1/consolidation.proto",
21
+ )
22
+ # @@protoc_insertion_point(imports)
23
+
24
+ _sym_db = _symbol_database.Default()
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
28
+ b'\n-weaveapi/consolidation/v1/consolidation.proto\x12\x19weaveapi.consolidation.v1\x1a\x1fgoogle/protobuf/timestamp.proto"e\n\x0eKnowledgeRealm\x12\x41\n\x04kind\x18\x01 \x01(\x0e\x32-.weaveapi.consolidation.v1.KnowledgeRealmKindR\x04kind\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key"\x97\x03\n\x10\x43onsolidationRun\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12I\n\x06status\x18\x03 \x01(\x0e\x32\x31.weaveapi.consolidation.v1.ConsolidationRunStatusR\x06status\x12!\n\x0cthread_count\x18\x04 \x01(\x05R\x0bthreadCount\x12#\n\rcluster_count\x18\x05 \x01(\x05R\x0c\x63lusterCount\x12\'\n\x0fhierarchy_depth\x18\x06 \x01(\x05R\x0ehierarchyDepth\x12\x14\n\x05\x65rror\x18\x07 \x01(\tR\x05\x65rror\x12\x39\n\nstarted_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12=\n\x0c\x63ompleted_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0b\x63ompletedAt"\xb0\x04\n\x0e\x43onceptCluster\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x04 \x01(\tR\x0b\x64\x65scription\x12%\n\x0eknowledge_type\x18\x05 \x01(\tR\rknowledgeType\x12\x14\n\x05level\x18\x06 \x01(\x05R\x05level\x12\x1b\n\tparent_id\x18\x07 \x01(\tR\x08parentId\x12!\n\x0cthread_count\x18\x08 \x01(\x05R\x0bthreadCount\x12\x30\n\x14\x63onsolidation_run_id\x18\t \x01(\tR\x12\x63onsolidationRunId\x12\x39\n\ncreated_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12*\n\x11\x63hild_cluster_ids\x18\x0c \x03(\tR\x0f\x63hildClusterIds\x12\x1d\n\nthread_ids\x18\r \x03(\tR\tthreadIds\x12?\n\x05realm\x18\x0e \x01(\x0b\x32).weaveapi.consolidation.v1.KnowledgeRealmR\x05realm"]\n\x10\x43onceptHierarchy\x12I\n\x08\x63lusters\x18\x01 \x03(\x0b\x32).weaveapi.consolidation.v1.ConceptClusterB\x02(\x01R\x08\x63lusters"\xc0\x01\n\x1bTriggerConsolidationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0c\x66ull_rebuild\x18\x02 \x01(\x08R\x0b\x66ullRebuild\x12(\n\x10top_level_target\x18\x03 \x01(\x05R\x0etopLevelTarget\x12+\n\x11neighborhood_size\x18\x04 \x01(\x05R\x10neighborhoodSize"w\n\x1aGetConsolidationRunRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x30\n\x14\x63onsolidation_run_id\x18\x02 \x01(\tR\x12\x63onsolidationRunId"\x86\x01\n\x1fListConsolidationHistoryRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x1b\n\tpage_size\x18\x02 \x01(\x05R\x08pageSize\x12\x1d\n\npage_token\x18\x03 \x01(\tR\tpageToken"\x8f\x01\n ListConsolidationHistoryResponse\x12\x43\n\x04runs\x18\x01 \x03(\x0b\x32+.weaveapi.consolidation.v1.ConsolidationRunB\x02(\x01R\x04runs\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken"\xf0\x01\n\x1aGetConceptHierarchyRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12%\n\x0eknowledge_type\x18\x02 \x01(\tR\rknowledgeType\x12\x1b\n\tmax_depth\x18\x03 \x01(\x05R\x08maxDepth\x12$\n\x0e\x61\x63ting_user_id\x18\x04 \x01(\tR\x0c\x61\x63tingUserId\x12?\n\x05realm\x18\x05 \x01(\x0b\x32).weaveapi.consolidation.v1.KnowledgeRealmR\x05realm"\xd8\x01\n\x18GetConceptClusterRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12,\n\x12\x63oncept_cluster_id\x18\x02 \x01(\tR\x10\x63onceptClusterId\x12$\n\x0e\x61\x63ting_user_id\x18\x03 \x01(\tR\x0c\x61\x63tingUserId\x12?\n\x05realm\x18\x04 \x01(\x0b\x32).weaveapi.consolidation.v1.KnowledgeRealmR\x05realm"|\n\x1cTriggerConsolidationResponse\x12\\\n\x11\x63onsolidation_run\x18\x01 \x01(\x0b\x32+.weaveapi.consolidation.v1.ConsolidationRunB\x02(\x01R\x10\x63onsolidationRun"{\n\x1bGetConsolidationRunResponse\x12\\\n\x11\x63onsolidation_run\x18\x01 \x01(\x0b\x32+.weaveapi.consolidation.v1.ConsolidationRunB\x02(\x01R\x10\x63onsolidationRun"l\n\x1bGetConceptHierarchyResponse\x12M\n\thierarchy\x18\x01 \x01(\x0b\x32+.weaveapi.consolidation.v1.ConceptHierarchyB\x02(\x01R\thierarchy"s\n\x19GetConceptClusterResponse\x12V\n\x0f\x63oncept_cluster\x18\x01 \x01(\x0b\x32).weaveapi.consolidation.v1.ConceptClusterB\x02(\x01R\x0e\x63onceptCluster*\xb0\x02\n\x16\x43onsolidationRunStatus\x12(\n$CONSOLIDATION_RUN_STATUS_UNSPECIFIED\x10\x00\x12$\n CONSOLIDATION_RUN_STATUS_STARTED\x10\x01\x12\'\n#CONSOLIDATION_RUN_STATUS_CLUSTERING\x10\x02\x12%\n!CONSOLIDATION_RUN_STATUS_LABELING\x10\x03\x12*\n&CONSOLIDATION_RUN_STATUS_HIERARCHIZING\x10\x04\x12%\n!CONSOLIDATION_RUN_STATUS_COMPLETE\x10\x05\x12#\n\x1f\x43ONSOLIDATION_RUN_STATUS_FAILED\x10\x06*\x95\x01\n\x12KnowledgeRealmKind\x12$\n KNOWLEDGE_REALM_KIND_UNSPECIFIED\x10\x00\x12\x1c\n\x18KNOWLEDGE_REALM_KIND_ORG\x10\x01\x12\x1c\n\x18KNOWLEDGE_REALM_KIND_TAG\x10\x02\x12\x1d\n\x19KNOWLEDGE_REALM_KIND_USER\x10\x03\x42\x81\x02\n\x1d\x63om.weaveapi.consolidation.v1B\x12\x43onsolidationProtoP\x01ZFgithub.com/weave-labs/weave-go/weaveapi/consolidation/v1;consolidation\xa2\x02\x03WCX\xaa\x02\x19Weaveapi.Consolidation.V1\xca\x02\x19Weaveapi\\Consolidation\\V1\xe2\x02%Weaveapi\\Consolidation\\V1\\GPBMetadata\xea\x02\x1bWeaveapi::Consolidation::V1b\x08\x65\x64itionsp\xe8\x07'
29
+ )
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(
34
+ DESCRIPTOR, "weaveapi.consolidation.v1.consolidation_pb2", _globals
35
+ )
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals["DESCRIPTOR"]._loaded_options = None
38
+ _globals[
39
+ "DESCRIPTOR"
40
+ ]._serialized_options = b"\n\035com.weaveapi.consolidation.v1B\022ConsolidationProtoP\001ZFgithub.com/weave-labs/weave-go/weaveapi/consolidation/v1;consolidation\242\002\003WCX\252\002\031Weaveapi.Consolidation.V1\312\002\031Weaveapi\\Consolidation\\V1\342\002%Weaveapi\\Consolidation\\V1\\GPBMetadata\352\002\033Weaveapi::Consolidation::V1"
41
+ _globals["_CONCEPTHIERARCHY"].fields_by_name["clusters"]._loaded_options = None
42
+ _globals["_CONCEPTHIERARCHY"].fields_by_name[
43
+ "clusters"
44
+ ]._serialized_options = b"(\001"
45
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"].fields_by_name[
46
+ "runs"
47
+ ]._loaded_options = None
48
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"].fields_by_name[
49
+ "runs"
50
+ ]._serialized_options = b"(\001"
51
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"].fields_by_name[
52
+ "consolidation_run"
53
+ ]._loaded_options = None
54
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"].fields_by_name[
55
+ "consolidation_run"
56
+ ]._serialized_options = b"(\001"
57
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"].fields_by_name[
58
+ "consolidation_run"
59
+ ]._loaded_options = None
60
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"].fields_by_name[
61
+ "consolidation_run"
62
+ ]._serialized_options = b"(\001"
63
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"].fields_by_name[
64
+ "hierarchy"
65
+ ]._loaded_options = None
66
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"].fields_by_name[
67
+ "hierarchy"
68
+ ]._serialized_options = b"(\001"
69
+ _globals["_GETCONCEPTCLUSTERRESPONSE"].fields_by_name[
70
+ "concept_cluster"
71
+ ]._loaded_options = None
72
+ _globals["_GETCONCEPTCLUSTERRESPONSE"].fields_by_name[
73
+ "concept_cluster"
74
+ ]._serialized_options = b"(\001"
75
+ _globals["_CONSOLIDATIONRUNSTATUS"]._serialized_start = 2820
76
+ _globals["_CONSOLIDATIONRUNSTATUS"]._serialized_end = 3124
77
+ _globals["_KNOWLEDGEREALMKIND"]._serialized_start = 3127
78
+ _globals["_KNOWLEDGEREALMKIND"]._serialized_end = 3276
79
+ _globals["_KNOWLEDGEREALM"]._serialized_start = 109
80
+ _globals["_KNOWLEDGEREALM"]._serialized_end = 210
81
+ _globals["_CONSOLIDATIONRUN"]._serialized_start = 213
82
+ _globals["_CONSOLIDATIONRUN"]._serialized_end = 620
83
+ _globals["_CONCEPTCLUSTER"]._serialized_start = 623
84
+ _globals["_CONCEPTCLUSTER"]._serialized_end = 1183
85
+ _globals["_CONCEPTHIERARCHY"]._serialized_start = 1185
86
+ _globals["_CONCEPTHIERARCHY"]._serialized_end = 1278
87
+ _globals["_TRIGGERCONSOLIDATIONREQUEST"]._serialized_start = 1281
88
+ _globals["_TRIGGERCONSOLIDATIONREQUEST"]._serialized_end = 1473
89
+ _globals["_GETCONSOLIDATIONRUNREQUEST"]._serialized_start = 1475
90
+ _globals["_GETCONSOLIDATIONRUNREQUEST"]._serialized_end = 1594
91
+ _globals["_LISTCONSOLIDATIONHISTORYREQUEST"]._serialized_start = 1597
92
+ _globals["_LISTCONSOLIDATIONHISTORYREQUEST"]._serialized_end = 1731
93
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"]._serialized_start = 1734
94
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"]._serialized_end = 1877
95
+ _globals["_GETCONCEPTHIERARCHYREQUEST"]._serialized_start = 1880
96
+ _globals["_GETCONCEPTHIERARCHYREQUEST"]._serialized_end = 2120
97
+ _globals["_GETCONCEPTCLUSTERREQUEST"]._serialized_start = 2123
98
+ _globals["_GETCONCEPTCLUSTERREQUEST"]._serialized_end = 2339
99
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"]._serialized_start = 2341
100
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"]._serialized_end = 2465
101
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"]._serialized_start = 2467
102
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"]._serialized_end = 2590
103
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"]._serialized_start = 2592
104
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"]._serialized_end = 2700
105
+ _globals["_GETCONCEPTCLUSTERRESPONSE"]._serialized_start = 2702
106
+ _globals["_GETCONCEPTCLUSTERRESPONSE"]._serialized_end = 2817
107
+ # @@protoc_insertion_point(module_scope)