qwak-core 0.4.378__py3-none-any.whl → 0.5.12__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.

Potentially problematic release.


This version of qwak-core might be problematic. Click here for more details.

Files changed (36) hide show
  1. _qwak_proto/qwak/administration/account/v1/account_pb2.py +20 -18
  2. _qwak_proto/qwak/administration/account/v1/account_pb2.pyi +21 -2
  3. _qwak_proto/qwak/admiral/secret/v0/secret_pb2.py +16 -14
  4. _qwak_proto/qwak/admiral/secret/v0/secret_pb2.pyi +21 -2
  5. _qwak_proto/qwak/builds/build_values_pb2.py +24 -18
  6. _qwak_proto/qwak/builds/build_values_pb2.pyi +21 -1
  7. _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2.py +18 -11
  8. _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2.pyi +71 -1
  9. _qwak_proto/qwak/feature_store/features/feature_set_pb2.py +4 -4
  10. _qwak_proto/qwak/feature_store/features/feature_set_pb2.pyi +4 -0
  11. _qwak_proto/qwak/feature_store/features/feature_set_types_pb2.py +60 -58
  12. _qwak_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +7 -2
  13. _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2.py +40 -40
  14. _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2.pyi +7 -1
  15. _qwak_proto/qwak/model_group/model_group_repository_details_pb2.py +16 -12
  16. _qwak_proto/qwak/model_group/model_group_repository_details_pb2.pyi +44 -6
  17. _qwak_proto/qwak/projects/projects_pb2.py +17 -15
  18. _qwak_proto/qwak/secret_service/secret_service_pb2.pyi +1 -1
  19. qwak/__init__.py +1 -1
  20. qwak/clients/feature_store/execution_management_client.py +28 -0
  21. qwak/exceptions/__init__.py +1 -0
  22. qwak/exceptions/qwak_grpc_address_exception.py +9 -0
  23. qwak/feature_store/execution/streaming_backfill.py +48 -0
  24. qwak/feature_store/feature_sets/streaming.py +84 -63
  25. qwak/feature_store/feature_sets/streaming_backfill.py +88 -124
  26. qwak/inner/const.py +2 -6
  27. qwak/inner/di_configuration/__init__.py +1 -67
  28. qwak/inner/di_configuration/dependency_wiring.py +98 -0
  29. qwak/inner/tool/grpc/grpc_tools.py +123 -3
  30. qwak/llmops/generation/chat/openai/types/chat/chat_completion.py +24 -6
  31. qwak/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py +44 -8
  32. qwak/llmops/generation/chat/openai/types/chat/chat_completion_message.py +6 -3
  33. {qwak_core-0.4.378.dist-info → qwak_core-0.5.12.dist-info}/METADATA +4 -6
  34. {qwak_core-0.4.378.dist-info → qwak_core-0.5.12.dist-info}/RECORD +36 -33
  35. qwak_services_mock/mocks/execution_management_service.py +9 -1
  36. {qwak_core-0.4.378.dist-info → qwak_core-0.5.12.dist-info}/WHEEL +0 -0
@@ -16,8 +16,6 @@
16
16
  from dataclasses import dataclass
17
17
  from typing import List, Optional
18
18
 
19
- from typing_extensions import Literal
20
-
21
19
  from qwak.llmops.generation.base import ModelResponse
22
20
  from .chat_completion_message import ChatCompletionMessage
23
21
  from .chat_completion_token_logprob import ChatCompletionTokenLogprob
@@ -34,9 +32,7 @@ class ChoiceLogprobs:
34
32
 
35
33
  @dataclass
36
34
  class Choice:
37
- finish_reason: Literal[
38
- "stop", "length", "tool_calls", "content_filter", "function_call"
39
- ]
35
+ finish_reason: str
40
36
  """The reason the model stopped generating tokens.
41
37
 
42
38
  This will be `stop` if the model hit a natural stop point or a provided stop
@@ -55,6 +51,21 @@ class Choice:
55
51
  logprobs: Optional[ChoiceLogprobs] = None
56
52
  """Log probability information for the choice."""
57
53
 
54
+ def __post_init__(self):
55
+ """Validates that finish_reason is one of the allowed values."""
56
+ allowed_reasons = {
57
+ "stop",
58
+ "length",
59
+ "tool_calls",
60
+ "content_filter",
61
+ "function_call",
62
+ }
63
+ if self.finish_reason not in allowed_reasons:
64
+ raise ValueError(
65
+ f"Invalid finish_reason: '{self.finish_reason}'. "
66
+ f"Must be one of {allowed_reasons}"
67
+ )
68
+
58
69
 
59
70
  @dataclass
60
71
  class ChatCompletion(ModelResponse):
@@ -73,7 +84,7 @@ class ChatCompletion(ModelResponse):
73
84
  model: str
74
85
  """The model used for the chat completion."""
75
86
 
76
- object: Literal["chat.completion"]
87
+ object: str
77
88
  """The object type, which is always `chat.completion`."""
78
89
 
79
90
  system_fingerprint: Optional[str] = None
@@ -85,3 +96,10 @@ class ChatCompletion(ModelResponse):
85
96
 
86
97
  usage: Optional[CompletionUsage] = None
87
98
  """Usage statistics for the completion request."""
99
+
100
+ def __post_init__(self):
101
+ """Validates that the object type is correct."""
102
+ if self.object != "chat.completion":
103
+ raise ValueError(
104
+ f"Invalid object type: '{self.object}'. Must be 'chat.completion'"
105
+ )
@@ -16,8 +16,6 @@
16
16
  from dataclasses import dataclass
17
17
  from typing import List, Optional
18
18
 
19
- from typing_extensions import Literal
20
-
21
19
  from qwak.llmops.generation.base import ModelResponse
22
20
  from .chat_completion_token_logprob import ChatCompletionTokenLogprob
23
21
 
@@ -69,9 +67,16 @@ class ChoiceDeltaToolCall:
69
67
 
70
68
  function: Optional[ChoiceDeltaToolCallFunction] = None
71
69
 
72
- type: Optional[Literal["function"]] = None
70
+ type: Optional[str] = None
73
71
  """The type of the tool. Currently, only `function` is supported."""
74
72
 
73
+ def __post_init__(self):
74
+ """Validates that type is 'function' if present."""
75
+ if self.type is not None and self.type != "function":
76
+ raise ValueError(
77
+ f"Invalid type: '{self.type}'. Must be 'function' or None."
78
+ )
79
+
75
80
 
76
81
  @dataclass
77
82
  class ChoiceDelta:
@@ -85,11 +90,21 @@ class ChoiceDelta:
85
90
  model.
86
91
  """
87
92
 
88
- role: Optional[Literal["system", "user", "assistant", "tool"]] = None
93
+ role: Optional[str] = None
89
94
  """The role of the author of this message."""
90
95
 
91
96
  tool_calls: Optional[List[ChoiceDeltaToolCall]] = None
92
97
 
98
+ def __post_init__(self):
99
+ """Validates that role is one of the allowed values if present."""
100
+ if self.role is not None:
101
+ allowed_roles = {"system", "user", "assistant", "tool"}
102
+ if self.role not in allowed_roles:
103
+ raise ValueError(
104
+ f"Invalid role: '{self.role}'. "
105
+ f"Must be one of {allowed_roles} or None."
106
+ )
107
+
93
108
 
94
109
  @dataclass
95
110
  class ChoiceLogprobs:
@@ -105,9 +120,7 @@ class Choice:
105
120
  index: int
106
121
  """The index of the choice in the list of choices."""
107
122
 
108
- finish_reason: Optional[
109
- Literal["stop", "length", "tool_calls", "content_filter", "function_call"]
110
- ] = None
123
+ finish_reason: Optional[str] = None
111
124
  """The reason the model stopped generating tokens.
112
125
 
113
126
  This will be `stop` if the model hit a natural stop point or a provided stop
@@ -120,6 +133,22 @@ class Choice:
120
133
  logprobs: Optional[ChoiceLogprobs] = None
121
134
  """Log probability information for the choice."""
122
135
 
136
+ def __post_init__(self):
137
+ """Validates that finish_reason is one of the allowed values if present."""
138
+ if self.finish_reason is not None:
139
+ allowed_reasons = {
140
+ "stop",
141
+ "length",
142
+ "tool_calls",
143
+ "content_filter",
144
+ "function_call",
145
+ }
146
+ if self.finish_reason not in allowed_reasons:
147
+ raise ValueError(
148
+ f"Invalid finish_reason: '{self.finish_reason}'. "
149
+ f"Must be one of {allowed_reasons} or None."
150
+ )
151
+
123
152
 
124
153
  @dataclass
125
154
  class ChatCompletionChunk(ModelResponse):
@@ -141,7 +170,7 @@ class ChatCompletionChunk(ModelResponse):
141
170
  model: str
142
171
  """The model to generate the completion."""
143
172
 
144
- object: Literal["chat.completion.chunk"]
173
+ object: str
145
174
  """The object type, which is always `chat.completion.chunk`."""
146
175
 
147
176
  system_fingerprint: Optional[str] = None
@@ -150,3 +179,10 @@ class ChatCompletionChunk(ModelResponse):
150
179
  Can be used in conjunction with the `seed` request parameter to understand when
151
180
  backend changes have been made that might impact determinism.
152
181
  """
182
+
183
+ def __post_init__(self):
184
+ """Validates that the object type is correct."""
185
+ if self.object != "chat.completion.chunk":
186
+ raise ValueError(
187
+ f"Invalid object type: '{self.object}'. Must be 'chat.completion.chunk'"
188
+ )
@@ -16,8 +16,6 @@
16
16
  from dataclasses import dataclass
17
17
  from typing import List, Optional
18
18
 
19
- from typing_extensions import Literal
20
-
21
19
  from .chat_completion_message_tool_call import ChatCompletionMessageToolCall
22
20
 
23
21
  __all__ = ["ChatCompletionMessage", "FunctionCall"]
@@ -39,7 +37,7 @@ class FunctionCall:
39
37
 
40
38
  @dataclass
41
39
  class ChatCompletionMessage:
42
- role: Literal["assistant"]
40
+ role: str
43
41
  """The role of the author of this message."""
44
42
 
45
43
  content: Optional[str] = None
@@ -54,3 +52,8 @@ class ChatCompletionMessage:
54
52
 
55
53
  tool_calls: Optional[List[ChatCompletionMessageToolCall]] = None
56
54
  """The tool calls generated by the model, such as function calls."""
55
+
56
+ def __post_init__(self):
57
+ """Validates that the role type is correct."""
58
+ if self.role != "assistant":
59
+ raise ValueError(f"Invalid object type: '{self.role}'. Must be 'assistant'")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: qwak-core
3
- Version: 0.4.378
3
+ Version: 0.5.12
4
4
  Summary: Qwak Core contains the necessary objects and communication tools for using the Qwak Platform
5
5
  License: Apache-2.0
6
6
  Keywords: mlops,ml,deployment,serving,model
@@ -13,8 +13,6 @@ Classifier: Programming Language :: Python :: 3
13
13
  Classifier: Programming Language :: Python :: 3.9
14
14
  Classifier: Programming Language :: Python :: 3.10
15
15
  Classifier: Programming Language :: Python :: 3.11
16
- Classifier: Programming Language :: Python :: 3.7
17
- Classifier: Programming Language :: Python :: 3.8
18
16
  Classifier: Programming Language :: Python :: Implementation :: CPython
19
17
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
18
  Provides-Extra: feature-store
@@ -22,7 +20,7 @@ Requires-Dist: PyYAML (>=6.0.2)
22
20
  Requires-Dist: cachetools
23
21
  Requires-Dist: chevron (==0.14.0)
24
22
  Requires-Dist: cloudpickle (==2.2.1) ; extra == "feature-store"
25
- Requires-Dist: dacite (==1.8.1)
23
+ Requires-Dist: dacite (==1.9.2)
26
24
  Requires-Dist: dependency-injector (>=4.0)
27
25
  Requires-Dist: filelock
28
26
  Requires-Dist: grpcio (>=1.71.2)
@@ -32,11 +30,11 @@ Requires-Dist: protobuf (>=4.25.8,<5)
32
30
  Requires-Dist: pyarrow (>=20.0.0) ; extra == "feature-store"
33
31
  Requires-Dist: pyathena (>=2.2.0,!=2.18.0) ; extra == "feature-store"
34
32
  Requires-Dist: pydantic
35
- Requires-Dist: pyspark (==3.4.2) ; extra == "feature-store"
33
+ Requires-Dist: pyspark (==3.5.7) ; extra == "feature-store"
36
34
  Requires-Dist: python-jose[cryptography] (>=3.4.0)
37
35
  Requires-Dist: python-json-logger (>=2.0.2)
38
36
  Requires-Dist: requests
39
- Requires-Dist: retrying (==1.3.4)
37
+ Requires-Dist: retrying (==1.4.2)
40
38
  Requires-Dist: tqdm
41
39
  Requires-Dist: typeguard (>=2,<3)
42
40
  Requires-Dist: typer
@@ -4,8 +4,8 @@ _qwak_proto/jfml/hosting_gateway/v1/build_upload_url_pb2_grpc.py,sha256=1oboBPFx
4
4
  _qwak_proto/jfml/hosting_gateway/v1/hosting_gateway_service_pb2.py,sha256=6dfhPPV1-qQcNt_P3sJ_2g9t55qzgnbmCxvctRBv2bA,2109
5
5
  _qwak_proto/jfml/hosting_gateway/v1/hosting_gateway_service_pb2.pyi,sha256=1ph1Ifv61UeT1aloXi3Ml4Ls5-tkrUUpjtOO16Pd5A0,1690
6
6
  _qwak_proto/jfml/hosting_gateway/v1/hosting_gateway_service_pb2_grpc.py,sha256=zrgMffnpFmrB7dxF6QmdLYRg-OUKsaVj2A3NBBKTXJU,3264
7
- _qwak_proto/qwak/administration/account/v1/account_pb2.py,sha256=Wv5feteL9MFMVLPsbSDpJjmZPtfXyhwg-cOoeWT132w,5548
8
- _qwak_proto/qwak/administration/account/v1/account_pb2.pyi,sha256=nVQd1EGvYdJZ4WpsHxqUGK1m9F-ESB0bX7S8d-pziWo,11832
7
+ _qwak_proto/qwak/administration/account/v1/account_pb2.py,sha256=6DREY1BKaUPQwze3eFqbV5gyBnlXPPnefnI7RiP44OM,5852
8
+ _qwak_proto/qwak/administration/account/v1/account_pb2.pyi,sha256=YG89JURmk6K-W_4trSX_n8h7kgp8VswYPyThdGaUgGk,12640
9
9
  _qwak_proto/qwak/administration/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
10
10
  _qwak_proto/qwak/administration/account/v1/account_service_pb2.py,sha256=fIMLkKVLt_iQi8pb2oRZCo-iEk79gKEgTSQfUlWApkA,8767
11
11
  _qwak_proto/qwak/administration/account/v1/account_service_pb2.pyi,sha256=zr65MWQyMhs3xslpebPAye5UY9XN7p5IwSrFdZGOxck,15289
@@ -115,8 +115,8 @@ _qwak_proto/qwak/administration/v0/environments/personalization_pb2_grpc.py,sha2
115
115
  _qwak_proto/qwak/administration/v0/users/user_pb2.py,sha256=ZXt8_c_uIrDSBQfAmVqrNctab40U0E_XJ_gLN8RLeYo,4676
116
116
  _qwak_proto/qwak/administration/v0/users/user_pb2.pyi,sha256=GFbJz424r1aTF1kC50ZDIvYTfgxO02C7OHu2SZyL-nc,10595
117
117
  _qwak_proto/qwak/administration/v0/users/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
118
- _qwak_proto/qwak/admiral/secret/v0/secret_pb2.py,sha256=e787Llg0WvzaloJfaBZx4V3StmN3YgxvcCeHqSx0y8I,4777
119
- _qwak_proto/qwak/admiral/secret/v0/secret_pb2.pyi,sha256=fXUy0VYrTsIPYasdAr1t_sjmUi0czvpak71cMT4qO3U,9392
118
+ _qwak_proto/qwak/admiral/secret/v0/secret_pb2.py,sha256=HuEYHLETaK6KpVGO4gEwMXeyrPniUwKX3Uz6zFDzfIg,5085
119
+ _qwak_proto/qwak/admiral/secret/v0/secret_pb2.pyi,sha256=lQkF7UWO_JmvK5LdSsQ_D33Kzfr56e-i3rm31pT-fsU,10408
120
120
  _qwak_proto/qwak/admiral/secret/v0/secret_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
121
121
  _qwak_proto/qwak/admiral/secret/v0/secret_service_pb2.py,sha256=3g1GV-EGq7NtV8IIaz4zmjyTvmMf5iRhHwNaUBofkBU,3352
122
122
  _qwak_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi,sha256=vYjEiCbfJCuY49TTMmAN4w1TqyXtfN5HYP2_FAnZ4QE,3327
@@ -202,8 +202,8 @@ _qwak_proto/qwak/builds/build_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD
202
202
  _qwak_proto/qwak/builds/build_url_pb2.py,sha256=G7EUD7nYmhEVsStEYPnmqiESsV6sKaWjmcuyvahI0nk,4611
203
203
  _qwak_proto/qwak/builds/build_url_pb2.pyi,sha256=qaYyuLRHN2hOqYXlN9mKJo9gpggUnPmTVZIu-zNA0dI,11372
204
204
  _qwak_proto/qwak/builds/build_url_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
205
- _qwak_proto/qwak/builds/build_values_pb2.py,sha256=L-bkUAQIZFC1NcJcpsnNDUlBO8Br2N52yest-pZ3ZNA,8860
206
- _qwak_proto/qwak/builds/build_values_pb2.pyi,sha256=T-WvC45AaYIuQbYbs2QysVVHVaOqsaG1HyTz8NxQaek,24158
205
+ _qwak_proto/qwak/builds/build_values_pb2.py,sha256=emkDIRrYkp2tHYkRXOVSmyOp0wDrLXxFroKmx0LCNcY,9514
206
+ _qwak_proto/qwak/builds/build_values_pb2.pyi,sha256=ZDT29YdzTwjxkyy7nDTaN6H_W3WeF7gPMss-AQPXf3c,25106
207
207
  _qwak_proto/qwak/builds/build_values_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
208
208
  _qwak_proto/qwak/builds/builds_orchestrator_service_pb2.py,sha256=nvh6ANn8rNVjWByiB0xu-8Kt45FKh-C8YJaw5_I_N9M,14575
209
209
  _qwak_proto/qwak/builds/builds_orchestrator_service_pb2.pyi,sha256=Vl8UmQpIEslUhln3_xizdaHAWfBMBuaL8-aNAbdNBQs,24711
@@ -295,8 +295,8 @@ _qwak_proto/qwak/execution/v1/state/featureset_state_pb2_grpc.py,sha256=1oboBPFx
295
295
  _qwak_proto/qwak/execution/v1/state/spark_execution_state_pb2.py,sha256=K4yz7uyjHENUNwftdw9XAHxPu6rrSKOODnHEKo5V04M,3899
296
296
  _qwak_proto/qwak/execution/v1/state/spark_execution_state_pb2.pyi,sha256=RNuqy-wJU625PBzmiUXLtBFoP_zlRDuyVVuCWnMRrSQ,7677
297
297
  _qwak_proto/qwak/execution/v1/state/spark_execution_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
298
- _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2.py,sha256=6GQQrWhuZpJwHJ_5mzdPGqxuXs4XwJWpXDSeW4FdmD0,2370
299
- _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2.pyi,sha256=9fYbAdTDz7q5Ekok9yL4PjNNwtcYy-Ep3BaIny7-DJc,3514
298
+ _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2.py,sha256=PyZUkXXhWsysWSoTUCApTHZhcwWGTARNfTFcFMwrQOg,3967
299
+ _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2.pyi,sha256=-E-Cw0WePst3VcJBMPJTW4Z5C25ZpdD-zINPJ2BqN1s,7613
300
300
  _qwak_proto/qwak/execution/v1/streaming_aggregation_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
301
301
  _qwak_proto/qwak/execution/v1/streaming_pb2.py,sha256=yqu4xiH-nMlTi97iNfuIwoL91nGR3TktKv7Mr90Nwa8,2103
302
302
  _qwak_proto/qwak/execution/v1/streaming_pb2.pyi,sha256=23b3FBXUvbcNWqLNU-H-GE9a00ZFUOu5vpCu-EhsCUc,2938
@@ -322,8 +322,8 @@ _qwak_proto/qwak/feature_store/features/execution_pb2_grpc.py,sha256=1oboBPFxaTE
322
322
  _qwak_proto/qwak/feature_store/features/feature_set_attribute_pb2.py,sha256=acU3bxSuXzYI60VfvzojwEcSHntqjsuYDHCqC6tU84Y,1709
323
323
  _qwak_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi,sha256=cp_QEStB6mWicaEeXzOC9LswbSYdUnF1KQI2ySRhji4,1187
324
324
  _qwak_proto/qwak/feature_store/features/feature_set_attribute_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
325
- _qwak_proto/qwak/feature_store/features/feature_set_pb2.py,sha256=lmhbfRhEUPYJolHzuiFVR7BDq2e0y5J-XKdjWTnn9EI,10534
326
- _qwak_proto/qwak/feature_store/features/feature_set_pb2.pyi,sha256=6G9nJetH1xSmKGG2VaBZcACnDo5-m8NbRZJqA63pCjs,22199
325
+ _qwak_proto/qwak/feature_store/features/feature_set_pb2.py,sha256=APLRruxvwYBVOPDQdTxT8qUiKILTliv1hX7oApNmfNI,10605
326
+ _qwak_proto/qwak/feature_store/features/feature_set_pb2.pyi,sha256=xzlHQsnjjJzot576m-eylyviZN_YOnjnZu2v9GWI4SE,22395
327
327
  _qwak_proto/qwak/feature_store/features/feature_set_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
328
328
  _qwak_proto/qwak/feature_store/features/feature_set_service_pb2.py,sha256=dKOoqDCbOcYYJjgObHhS_kxM9hqBOzzX8ggzindQM9Q,17153
329
329
  _qwak_proto/qwak/feature_store/features/feature_set_service_pb2.pyi,sha256=VSI-YWEGfHMAROaF2j_3FpYSJ5qDjGCIqFzwKbl8iIg,27298
@@ -334,8 +334,8 @@ _qwak_proto/qwak/feature_store/features/feature_set_state_pb2_grpc.py,sha256=1ob
334
334
  _qwak_proto/qwak/feature_store/features/feature_set_state_service_pb2.py,sha256=TfznX3HNXk5oj4aGw_PfzmavW-dDF5B7l2wzv1krIJA,5048
335
335
  _qwak_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi,sha256=z0wpz9QZQcRBqI20WADp8_SGbO7rklZiRMtRxbE5TQ0,6846
336
336
  _qwak_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py,sha256=tYoQWrsrdeUoU8_o_Y_j8YjrPfexph3EeozdTBA9xjo,11647
337
- _qwak_proto/qwak/feature_store/features/feature_set_types_pb2.py,sha256=1eHuHGYyHtKn_GCbO1fZOc3nl2rgl7G1NHMKGT9Enxk,16476
338
- _qwak_proto/qwak/feature_store/features/feature_set_types_pb2.pyi,sha256=YV0kgA0NbMqGUakxBW1mmR8lLTzpoEM5oyTGiQZg4vE,43530
337
+ _qwak_proto/qwak/feature_store/features/feature_set_types_pb2.py,sha256=9FRb7mssTatWbG9roQ60TEs4Qz8-ph-Qb_b9l0ck0E0,16766
338
+ _qwak_proto/qwak/feature_store/features/feature_set_types_pb2.pyi,sha256=nRImcw3cXH_zxYhLwF5mnl6I-aU0Qp0123HrOeZpgOQ,43961
339
339
  _qwak_proto/qwak/feature_store/features/feature_set_types_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
340
340
  _qwak_proto/qwak/feature_store/features/monitoring_pb2.py,sha256=cyJyIxIoDmuGAgJOPtMB7GH_Z5Igna-9S7mttsfoBhk,1842
341
341
  _qwak_proto/qwak/feature_store/features/monitoring_pb2.pyi,sha256=MV8BvUlbVIyzqTJzzkBP2zodvYlpEtzYw221BkoOYXI,2428
@@ -478,8 +478,8 @@ _qwak_proto/qwak/kube_deployment_captain/alert_pb2_grpc.py,sha256=1oboBPFxaTEXt9
478
478
  _qwak_proto/qwak/kube_deployment_captain/alerting_pb2.py,sha256=l9xheVe-_YJH56iph8onfVyx6AsPTwHRnnW6tlrHc5Y,2265
479
479
  _qwak_proto/qwak/kube_deployment_captain/alerting_pb2.pyi,sha256=AGXtot0uXW-mGd2xuixCCJB6eTt0UuF3b2oAhb4IsNc,3759
480
480
  _qwak_proto/qwak/kube_deployment_captain/alerting_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
481
- _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2.py,sha256=A24aCVTWKQF-fe-ZQDB9Bw2-SMAiuAG3e6CU783fKU8,15828
482
- _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2.pyi,sha256=v6G0GeQhpE6cGHm7dgAJxxHoNGkIXrGadt4izyClhBw,39789
481
+ _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2.py,sha256=da44Eenv_lWSd-QfeuX9gCw3RTY8xtqBITbcH39bZ7Y,15874
482
+ _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2.pyi,sha256=ylUqP5TaNrd7repTGTGx2Z52JDASGdNeWMJY1QwBFmQ,40189
483
483
  _qwak_proto/qwak/kube_deployment_captain/batch_job_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
484
484
  _qwak_proto/qwak/kube_deployment_captain/deployment_pb2.py,sha256=urxClvH3ip8kk3p7HN7y6sOK5hvd-iI5WR3KuutxyrU,8188
485
485
  _qwak_proto/qwak/kube_deployment_captain/deployment_pb2.pyi,sha256=Sz11iTrL3BlUEl1jXNf0Q1SDe1SX_MjjyB9bMrtsOVg,24090
@@ -511,8 +511,8 @@ _qwak_proto/qwak/model_descriptor/open_ai_descriptor_pb2_grpc.py,sha256=1oboBPFx
511
511
  _qwak_proto/qwak/model_group/model_group_pb2.py,sha256=oM2O7f-CGykrJ2HCePU1lONl-hJoJtpSLBlvdqrBNO4,5244
512
512
  _qwak_proto/qwak/model_group/model_group_pb2.pyi,sha256=YDCW1Oj16lzWku0xJ5YYPPmzPmrqOfMwG8vqeYxiyZg,9245
513
513
  _qwak_proto/qwak/model_group/model_group_pb2_grpc.py,sha256=OnYtTijqKbxC13VpOUKJavMHae7BMWRusAUp-nz8h_g,9256
514
- _qwak_proto/qwak/model_group/model_group_repository_details_pb2.py,sha256=4rV7Xy1yrQNrO-AfZvekccyAyRr5_ymvuBa2tawMxcc,3089
515
- _qwak_proto/qwak/model_group/model_group_repository_details_pb2.pyi,sha256=GgYhrSXu8L2RdEV0clooKgB9Gye3_no4q0YrMy8QrZw,5701
514
+ _qwak_proto/qwak/model_group/model_group_repository_details_pb2.py,sha256=_MMAM40q5l9Luubv40LEa-Uv4CCkbNmRt3wQ-916Zz0,3735
515
+ _qwak_proto/qwak/model_group/model_group_repository_details_pb2.pyi,sha256=qOjP2x_4qC0gZayL6bkACeZU0GSfkH_6wIuWYHsNOe8,7320
516
516
  _qwak_proto/qwak/model_group/model_group_repository_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
517
517
  _qwak_proto/qwak/models/models_pb2.py,sha256=w2jAVJioQN5Ck1XW9jelfsOqmFRryVjmFukD49I_zUQ,18771
518
518
  _qwak_proto/qwak/models/models_pb2.pyi,sha256=T08V38RgCNy2x6ZW4_ZZdK09dZs7TzwXEHaGtNMW0y8,42643
@@ -544,7 +544,7 @@ _qwak_proto/qwak/offline/serving/v1/population_pb2_grpc.py,sha256=1oboBPFxaTEXt9
544
544
  _qwak_proto/qwak/projects/jfrog_project_spec_pb2.py,sha256=W4eUydLc6G50n8M56_b2BVdn39Pq3H0qfemHaf4mCTI,1310
545
545
  _qwak_proto/qwak/projects/jfrog_project_spec_pb2.pyi,sha256=Ovtqc19hCDGuOaaXKfMplDFnuMjVnzI7GX1lep8NrjA,1279
546
546
  _qwak_proto/qwak/projects/jfrog_project_spec_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
547
- _qwak_proto/qwak/projects/projects_pb2.py,sha256=J6O9FrcmE6A36hc5xgeGPTzioEmrWyVeE6fa-UjyGIQ,8665
547
+ _qwak_proto/qwak/projects/projects_pb2.py,sha256=3PbNFlXi5_qM2joyhBcC2XdNjQRQubCItRZoKg-hqvk,8846
548
548
  _qwak_proto/qwak/projects/projects_pb2.pyi,sha256=JG3ORdann5kvmsPfOH_ECRNJQluTpeQyv7DtHXqHy9I,20118
549
549
  _qwak_proto/qwak/projects/projects_pb2_grpc.py,sha256=bM4s9M89p8YSodLUwWTPR_IpB3bGw6E6NQxXoONxxMA,9642
550
550
  _qwak_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.py,sha256=UlQf0aTOQzdo9SeFIpv7Uytdm2j8-dovKewLIKZWBHI,9021
@@ -554,7 +554,7 @@ _qwak_proto/qwak/prompt/v1/prompt/prompt_pb2.py,sha256=gjKXxDiVJmrKjq2Y_UwjJXNfR
554
554
  _qwak_proto/qwak/prompt/v1/prompt/prompt_pb2.pyi,sha256=U_3NzNBlVdRrh31qHwjbiWi5hJiX9s6kyACGLuKVTag,17708
555
555
  _qwak_proto/qwak/prompt/v1/prompt/prompt_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
556
556
  _qwak_proto/qwak/secret_service/secret_service_pb2.py,sha256=8ooiy81TDcGWrdn2sMBBTpASLFk_VLVmksqSHvbJYDk,2553
557
- _qwak_proto/qwak/secret_service/secret_service_pb2.pyi,sha256=YiLNDCYiObqrXckY2AxHu2uwRmNkfedm5-qR1h6fUUk,2818
557
+ _qwak_proto/qwak/secret_service/secret_service_pb2.pyi,sha256=uGOjCJvtRDCC7WpaSsYZk9N5e9HlCKUlHobNTV1qpak,2814
558
558
  _qwak_proto/qwak/secret_service/secret_service_pb2_grpc.py,sha256=pK2l1thu6-_YTGf7qFBUJdC3eCc2CJZQOAfS-tp5ud0,6253
559
559
  _qwak_proto/qwak/self_service/account/v0/account_membership_pb2.py,sha256=nbCkwYpL1X2WDo5qh7Oj-QOJJEH1md55N0dBrqbyIP8,6265
560
560
  _qwak_proto/qwak/self_service/account/v0/account_membership_pb2.pyi,sha256=VrBo4kwWTSgmC58XvDuQyBKvdBWrgcolYkUa_-WDHxs,12627
@@ -622,7 +622,7 @@ _qwak_proto/qwak/workspace/workspace_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXH
622
622
  _qwak_proto/qwak/workspace/workspace_service_pb2.py,sha256=93uNm83VVrkLG_XVsuBOBTPs4UJF91YD1xJTOEbRyig,9239
623
623
  _qwak_proto/qwak/workspace/workspace_service_pb2.pyi,sha256=nKKCHwnovZhsy8TSVmdz-Vtl0nviOOoX56HD-41Xo08,13726
624
624
  _qwak_proto/qwak/workspace/workspace_service_pb2_grpc.py,sha256=yKGuexxTBza99Ihe0DSTniV2ZSd_AG47inHenqfi890,27193
625
- qwak/__init__.py,sha256=df8ol_RwJei3TvvQXx19ZBBV_l103r2PuDVsc8Ct2yc,587
625
+ qwak/__init__.py,sha256=eBEVeYrxbXaW9CHSWF1DsMseWHkw5gUHrSzHYBxiMmo,586
626
626
  qwak/automations/__init__.py,sha256=qFZRvCxUUn8gcxkJR0v19ulHW2oJ0x6-Rif7HiheDP4,1522
627
627
  qwak/automations/automation_executions.py,sha256=5MeH_epYYWb8NKXgAozwT_jPyyUDednBHG7izloi7RY,3228
628
628
  qwak/automations/automations.py,sha256=2Wyrgj2mW5VmJzTKAXj3vQM_svYCuq_Bsu3_Vu9SdR4,12732
@@ -671,7 +671,7 @@ qwak/clients/data_versioning/data_tag_filter.py,sha256=vJaZ-Zot4eYxrzonbkdEWWGXZ
671
671
  qwak/clients/deployment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
672
672
  qwak/clients/deployment/client.py,sha256=v8w-xEA7HeKBcsSobVkPdfQq_SLA9IbHo4qMJIAA5dM,6806
673
673
  qwak/clients/feature_store/__init__.py,sha256=mMCPBHDga6Y7dtJfNoHvfOvCyjNUHrVDX5uVsL2JkGk,53
674
- qwak/clients/feature_store/execution_management_client.py,sha256=tKLIML8wsvgsl1hBfx74izFL0rHYdNM69sEstomDfYM,4051
674
+ qwak/clients/feature_store/execution_management_client.py,sha256=P1nZnttIC3QNVUI_XD7K3ywRSIq6jtifa1FnPMvUtFg,5280
675
675
  qwak/clients/feature_store/job_registry_client.py,sha256=7VMtEj7aofKcABrYpldgdxyv8Vkdq_mocjns1O0uCqA,2635
676
676
  qwak/clients/feature_store/management_client.py,sha256=NTfuwV1SQdaVxxyCE-htz1zXOpJHAKEyiB3bnGUyCW4,18220
677
677
  qwak/clients/feature_store/offline_serving_client.py,sha256=gz8hqaboPA1Und8leOf1O0dXa9xorHDTU3b7-Ne9YSE,9344
@@ -711,12 +711,13 @@ qwak/clients/vector_store/management_client.py,sha256=EiO6B-zO0ETgL0VonWJZnigqpF
711
711
  qwak/clients/vector_store/serving_client.py,sha256=hl9B5Rr3fvCN12gCI6amlNoUll7sxT8rUE0a_JqhEHs,5293
712
712
  qwak/clients/workspace_manager/__init__.py,sha256=sJ_tnt-CqjXVVNlcywmyQ5L3n5Dk0uMDNjSVvEwHziA,43
713
713
  qwak/clients/workspace_manager/client.py,sha256=KXoipmYmzKTS1-auStjbZ7JKzXdCyHHqk22Q7KnrgV4,8136
714
- qwak/exceptions/__init__.py,sha256=GsyscKOIg1nwYCJz5MhpF5iKPyNyAR1NI2VtQf2OEus,790
714
+ qwak/exceptions/__init__.py,sha256=RgGCJgUvVbNm9Z_Kxnu3YUiI877LcqdMv7mJVtDxqYg,856
715
715
  qwak/exceptions/quiet_error.py,sha256=ePdCGP6ta8afjzprMiGoJFY-gxf8albRwuY0t1WF2lY,559
716
716
  qwak/exceptions/qwak_decode_exception.py,sha256=-Fgh3sc7iFEmhXTYJ1X5GFDvA32yRqTR2owgiYyDHbc,149
717
717
  qwak/exceptions/qwak_exception.py,sha256=w4kmvUVy3VLroDzFxYE112s6Vd4oJuchStemhw4qMCg,192
718
718
  qwak/exceptions/qwak_external_exception.py,sha256=i1-9D7uVHinkUhdKEBWEHi287dmVF5PgJaFq23ZGSI8,251
719
719
  qwak/exceptions/qwak_general_build_exception.py,sha256=dKJo9t0OGSOrZNBsLOibkTAmV3mGzXf-C3wRQaDphqc,424
720
+ qwak/exceptions/qwak_grpc_address_exception.py,sha256=MUSn3eP8z81KKDhb5Fe_888vGz8b1RndS79ulHuHI5o,320
720
721
  qwak/exceptions/qwak_http_exception.py,sha256=U1tlEFBp6BD5eICtATI8iCl4UJhVVFN2AWhWK-xbvoc,579
721
722
  qwak/exceptions/qwak_inference_exception.py,sha256=wvVQDf_saQt0FucWyVPI-lsz90OCbT-WqcB77_DzhU0,100
722
723
  qwak/exceptions/qwak_load_configuration_exception.py,sha256=rTs4lkgZbLYysgVBYt1Xi2i0GGSOFunen0oMpULYfdU,54
@@ -774,6 +775,7 @@ qwak/feature_store/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
774
775
  qwak/feature_store/execution/backfill.py,sha256=bzF_-ZrXEfS14-SfJ5ldI6CKjWVQQnlSsI-X4jI7VrU,6470
775
776
  qwak/feature_store/execution/execution.py,sha256=msFzcZamWTlb5pE8IslP6MmJMAqnmBXt94uSH70koIc,21243
776
777
  qwak/feature_store/execution/execution_query.py,sha256=B5KRU1jvI042kEQoKj7A3G8Hu80nd8orWf8cOD9hSm8,3564
778
+ qwak/feature_store/execution/streaming_backfill.py,sha256=wkQzK1SzZ4AAP35BSDMIiHGZk2mugGa5znRcQqXHIO8,1683
777
779
  qwak/feature_store/feature_sets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
778
780
  qwak/feature_store/feature_sets/_utils/_featureset_utils.py,sha256=AWnQBS8TrpRb_J7h4wQLOzq4D--GMfc2xkRElioOKBE,1636
779
781
  qwak/feature_store/feature_sets/backfill.py,sha256=70yEP3fLTt8ecNuxeBnFp-qp0OUJ53KkOQRsYv2QEzc,1979
@@ -783,8 +785,8 @@ qwak/feature_store/feature_sets/context.py,sha256=zV6r0O70cfM4pmxlfC6xxAtro-wBhe
783
785
  qwak/feature_store/feature_sets/execution_spec.py,sha256=SXlhgNJeFDIKvrH35ZOyjBqGUesdoxjWkPgHmm518Y0,1877
784
786
  qwak/feature_store/feature_sets/metadata.py,sha256=ckr-zr0hZgsK-tRWucMomF7Tj8XIYcp_cnNGwtMV4mA,1814
785
787
  qwak/feature_store/feature_sets/read_policies.py,sha256=ZVMRiducxfb5YbU0NQQDPb78BH5fRttsE5y2TL7Jaj4,6820
786
- qwak/feature_store/feature_sets/streaming.py,sha256=G0Prg6hyjrzimL0u7tA71G-Bq3mnn57ZZCneMfudL0Y,25161
787
- qwak/feature_store/feature_sets/streaming_backfill.py,sha256=NInPNnc0WYx2FDsjaOt5woTO7EtzgrZCbMB_Ull0ux0,9585
788
+ qwak/feature_store/feature_sets/streaming.py,sha256=4_fOOwagmOIRDruZZzNlpMDb6ElsXC3wYj3rlNP9zT0,26462
789
+ qwak/feature_store/feature_sets/streaming_backfill.py,sha256=dAkxZjmMdk1Oj0EFqFm-adwzw2XpURQ12I7bjbpV_2I,8280
788
790
  qwak/feature_store/feature_sets/transformations/__init__.py,sha256=TtzeMNhqxuYu8NIxqBCcGHJoA-B8389RTIHrDMvpMbw,857
789
791
  qwak/feature_store/feature_sets/transformations/aggregations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
790
792
  qwak/feature_store/feature_sets/transformations/aggregations/aggregations.py,sha256=MENQyuDEG5G4TQs7fd1L1FEfP4kWd0LaHbG61Kw4rbY,14117
@@ -863,11 +865,12 @@ qwak/inner/build_logic/tools/files.py,sha256=druKkTp640Zy3x1MLjuTuXY56r5blEnH8dS
863
865
  qwak/inner/build_logic/tools/ignore_files.py,sha256=E65s3m46pmSX4q4hX2-R5HYHDO4VCQHjip8Xn_yOBRg,750
864
866
  qwak/inner/build_logic/tools/text.py,sha256=tH-v19Mt8l90sMVxku5XRtrderT0qdRqJ-jLijqannA,188
865
867
  qwak/inner/build_logic/trigger_build_context.py,sha256=n5s7MRk41h8cxPI3IVuqMQUVuCc-D8A7Hhq35YuuAps,200
866
- qwak/inner/const.py,sha256=x4QzsCKr80c7CfYI2TkgIVdvX7vKrTq3mmHp7GFVF34,1131
867
- qwak/inner/di_configuration/__init__.py,sha256=_QzRdBIKha032PIx5qqJ2bI6K1Z7ceAqVUXmBJtXvJ8,1709
868
+ qwak/inner/const.py,sha256=H441szDAQsTBxCVWtk9HuawgZdPZkLFJRW6pxn1j5WM,991
869
+ qwak/inner/di_configuration/__init__.py,sha256=RxGaowPAmq-entRtvlp2Ln6uc08wD0TTFwnTr7cr5zI,133
868
870
  qwak/inner/di_configuration/account.py,sha256=V5NOVOsxhe11-oD4i4UFskWMhq0EOyJ0rDbNSAv7GfA,5338
869
871
  qwak/inner/di_configuration/config.yml,sha256=GUvaZMWIDIR_d7hFcPVG_kHdCwpERKH1AFDakG3vqI4,242
870
872
  qwak/inner/di_configuration/containers.py,sha256=dK-cfd8ajT6yujlEhPhcRYB-avdYDcreQz_2kTIVDRQ,1252
873
+ qwak/inner/di_configuration/dependency_wiring.py,sha256=5T9kJ26MBnzuJxUYlj3Q9JKUptevQeHSuxuwdq6UNBE,2659
871
874
  qwak/inner/di_configuration/session.py,sha256=Pwqapcu-0dsbb5dDn7ZGewVk4bYRN9sWk6ity72IDqY,452
872
875
  qwak/inner/instance_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
873
876
  qwak/inner/instance_template/verify_template_id.py,sha256=-c0Fh89XAfphKCpkurYaD-YyX3M3NkkpSLH4QsNPyko,1916
@@ -880,7 +883,7 @@ qwak/inner/tool/__init__.py,sha256=DDoMZk7LIZNfu63Ft0mLE5wflwlQoghAJ1ZmMAcAeVE,7
880
883
  qwak/inner/tool/auth.py,sha256=_78ufvtkNQ3ogcFwkotVySZgdS1yMTuIDMLOBsICkSU,4483
881
884
  qwak/inner/tool/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
882
885
  qwak/inner/tool/grpc/grpc_auth.py,sha256=_DvwaRruUu12l4K6ACvmzsTbIDlKl1kuKjm-ustQ5ns,1139
883
- qwak/inner/tool/grpc/grpc_tools.py,sha256=lY7SkXnnE0MrZOCFmg2KZZ5iZ7YJu_Z5F-R-6ezm4cU,6897
886
+ qwak/inner/tool/grpc/grpc_tools.py,sha256=XReEerN5bVh1JlDwxFx6Ea-gBecGnkesQnuYlzpyGGQ,10880
884
887
  qwak/inner/tool/grpc/grpc_try_wrapping.py,sha256=4RScvo2jiCr5XwZvaH516OJWqbMSxC8MWIarrD-5HnA,5654
885
888
  qwak/inner/tool/protobuf_factory.py,sha256=ar_oY38w_x0sxgVF7EBs5h7gchNsDntvtKK5sSYxb24,1686
886
889
  qwak/inner/tool/retry_utils.py,sha256=KcSFJuj02RKF-H9INpCmdiTNXlywEMJ2ClBa00N9aNM,435
@@ -895,13 +898,13 @@ qwak/llmops/generation/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
895
898
  qwak/llmops/generation/chat/openai/LICENSE.txt,sha256=d0M6HDjQ76tf255XPlAGkIoECMe688MXcGEYsOFySfI,11336
896
899
  qwak/llmops/generation/chat/openai/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
897
900
  qwak/llmops/generation/chat/openai/types/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
898
- qwak/llmops/generation/chat/openai/types/chat/chat_completion.py,sha256=GNabt8TN-N890KrZSUkwkG87aCYobVmtVZRpEV_1BKg,2922
901
+ qwak/llmops/generation/chat/openai/types/chat/chat_completion.py,sha256=tkrAUs112xAOVbwsYPZj0JIacGMNWAZ_7E1D_Hm0NN8,3519
899
902
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_assistant_message_param.py,sha256=Z-RpaLK5p7Mf87HXXEkhf7nIFsrq7GtJ-bZoAByat_k,2155
900
- qwak/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py,sha256=K5yqRScwwgvQ_i67G63JKDJOOCqdHAa_md10XbYzw-k,4696
903
+ qwak/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py,sha256=YeQx2PFkM0SqUPZE1QfsbdD3GeyWIC3sMcYgwm0dzbg,6045
901
904
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_content_part_text_param.py,sha256=N-880rUhsmzQX0gliLoc0GEzRYG6b999abPdiv5CeSc,945
902
905
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_function_call_option_param.py,sha256=T_dfvBpEupTdwHVxBX9nAJu5M0YmH7GNNwofQ-DT1kY,881
903
906
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_function_message_param.py,sha256=23WF1T86LoWrQaVg5DAASlxlpE82UUZYa58l3MlEF1Y,1108
904
- qwak/llmops/generation/chat/openai/types/chat/chat_completion_message.py,sha256=GjQx7m7cJ6HnjYewh83a51gDQBZfL45vS5BJAP0eZTw,1800
907
+ qwak/llmops/generation/chat/openai/types/chat/chat_completion_message.py,sha256=8DIPVH_HLwLxUtLY8hc85WvMb2vsktvXJ6aop9SmSPY,1955
905
908
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_message_param.py,sha256=wjJTJwOOZhFx8KgmBHl9iZJDMutzEma5R0q3FlJ2vUI,1354
906
909
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call.py,sha256=HrmsJw6D41H3a-8lNZsYRz0MJy3_8YGnX9-HEAYO3d4,1417
907
910
  qwak/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call_param.py,sha256=1PKfzKEV1WjtN7xkvGSLyS7H9wILM5LLQEbr5eg6Q2g,1525
@@ -1062,7 +1065,7 @@ qwak_services_mock/mocks/build_orchestrator_service_api.py,sha256=IlM6VzovSSV6o1
1062
1065
  qwak_services_mock/mocks/data_versioning_service.py,sha256=dUUrKwE3xc2bZtHa8YMg6wYn8zFa2BSZ5DaRsb1zT_Q,2453
1063
1066
  qwak_services_mock/mocks/deployment_management_service.py,sha256=T4fmFC1sUgEh5sXH6ilwyPmfRfEBFqyYrGGljl_Abg8,20609
1064
1067
  qwak_services_mock/mocks/ecosystem_service_api.py,sha256=f0-IeZMprFKvi1MvdW9aJZgO7BBdnJHQB8spDiVWy-A,1607
1065
- qwak_services_mock/mocks/execution_management_service.py,sha256=D7bmYfCFKnxo6_LAO2ogy5gNqFB-V84KtpZxaCXfczk,886
1068
+ qwak_services_mock/mocks/execution_management_service.py,sha256=L6uSHniFNaJDZUwRuMnt_-j6NmpJoOsD0RwpoI6w9ag,1190
1066
1069
  qwak_services_mock/mocks/feature_store_data_sources_manager_api.py,sha256=zfiq5x7xxg4IvBS1OndqSnFHDOckMW_-4K_Ajlko6no,5241
1067
1070
  qwak_services_mock/mocks/feature_store_entities_manager_api.py,sha256=I9wsVEsb0qVcD8jgekeC-EG-Ke8SziRLUND8uF4OJbc,3349
1068
1071
  qwak_services_mock/mocks/feature_store_feature_set_manager_api.py,sha256=TZIGeKGwOP45MbcnuSAoB2Gc28j_wzU9Vuu6Q757x-s,10918
@@ -1095,6 +1098,6 @@ qwak_services_mock/mocks/workspace_manager_service_mock.py,sha256=O9ZSwln4T4kHVk
1095
1098
  qwak_services_mock/services_mock.py,sha256=0BWwS2re9ryO3JrJJgSNyEQ0lDOjyrpV36oa8t7Pd7A,19163
1096
1099
  qwak_services_mock/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1097
1100
  qwak_services_mock/utils/service_utils.py,sha256=ZlB0CnB1J6oBn6_m7fQO2U8tKoboHdUa6ljjkRMYNXU,265
1098
- qwak_core-0.4.378.dist-info/METADATA,sha256=evs0wq1nz6D09BVJfLoAgJzaVcrB7S1PPC77RKKTyc8,2088
1099
- qwak_core-0.4.378.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1100
- qwak_core-0.4.378.dist-info/RECORD,,
1101
+ qwak_core-0.5.12.dist-info/METADATA,sha256=Idr0TViACsw1-5_03xRXvOcr9a8mg8njLW252T28YHQ,1987
1102
+ qwak_core-0.5.12.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1103
+ qwak_core-0.5.12.dist-info/RECORD,,
@@ -1,7 +1,8 @@
1
- from _qwak_proto.qwak.execution.v1.execution_service_pb2 import TriggerBackfillResponse
1
+ from _qwak_proto.qwak.execution.v1.execution_service_pb2 import (TriggerBackfillResponse, TriggerStreamingAggregationBackfillResponse)
2
2
  from _qwak_proto.qwak.execution.v1.execution_service_pb2_grpc import (
3
3
  FeatureStoreExecutionServiceServicer,
4
4
  )
5
+
5
6
  from grpc import RpcError
6
7
 
7
8
 
@@ -23,3 +24,10 @@ class ExecutionManagementServiceMock(FeatureStoreExecutionServiceServicer):
23
24
  if self._raise_exception_on_request:
24
25
  raise RpcError
25
26
  return TriggerBackfillResponse(execution_id=self._execution_id)
27
+
28
+ def TriggerStreamingAggregationBackfill(self, request, context):
29
+ if self._raise_exception_on_request:
30
+ raise RpcError
31
+ return TriggerStreamingAggregationBackfillResponse(
32
+ execution_id=self._execution_id
33
+ )