modal 1.0.6.dev50__py3-none-any.whl → 1.0.6.dev51__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 modal might be problematic. Click here for more details.

modal_proto/api_pb2.pyi CHANGED
@@ -5333,6 +5333,7 @@ class FunctionGetOutputsRequest(google.protobuf.message.Message):
5333
5333
  CLEAR_ON_SUCCESS_FIELD_NUMBER: builtins.int
5334
5334
  REQUESTED_AT_FIELD_NUMBER: builtins.int
5335
5335
  INPUT_JWTS_FIELD_NUMBER: builtins.int
5336
+ START_IDX_FIELD_NUMBER: builtins.int
5336
5337
  function_call_id: builtins.str
5337
5338
  max_values: builtins.int
5338
5339
  timeout: builtins.float
@@ -5344,6 +5345,8 @@ class FunctionGetOutputsRequest(google.protobuf.message.Message):
5344
5345
  @property
5345
5346
  def input_jwts(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
5346
5347
  """The jwts the client expects the server to be processing. This is optional and used for sync inputs only."""
5348
+ start_idx: builtins.int
5349
+ """for async batch requests. this indicates which index to start from."""
5347
5350
  def __init__(
5348
5351
  self,
5349
5352
  *,
@@ -5354,8 +5357,11 @@ class FunctionGetOutputsRequest(google.protobuf.message.Message):
5354
5357
  clear_on_success: builtins.bool = ...,
5355
5358
  requested_at: builtins.float = ...,
5356
5359
  input_jwts: collections.abc.Iterable[builtins.str] | None = ...,
5360
+ start_idx: builtins.int | None = ...,
5357
5361
  ) -> None: ...
5358
- def ClearField(self, field_name: typing_extensions.Literal["clear_on_success", b"clear_on_success", "function_call_id", b"function_call_id", "input_jwts", b"input_jwts", "last_entry_id", b"last_entry_id", "max_values", b"max_values", "requested_at", b"requested_at", "timeout", b"timeout"]) -> None: ...
5362
+ def HasField(self, field_name: typing_extensions.Literal["_start_idx", b"_start_idx", "start_idx", b"start_idx"]) -> builtins.bool: ...
5363
+ def ClearField(self, field_name: typing_extensions.Literal["_start_idx", b"_start_idx", "clear_on_success", b"clear_on_success", "function_call_id", b"function_call_id", "input_jwts", b"input_jwts", "last_entry_id", b"last_entry_id", "max_values", b"max_values", "requested_at", b"requested_at", "start_idx", b"start_idx", "timeout", b"timeout"]) -> None: ...
5364
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_start_idx", b"_start_idx"]) -> typing_extensions.Literal["start_idx"] | None: ...
5359
5365
 
5360
5366
  global___FunctionGetOutputsRequest = FunctionGetOutputsRequest
5361
5367
 
modal_version/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # Copyright Modal Labs 2025
2
2
  """Supplies the current version of the modal client library."""
3
3
 
4
- __version__ = "1.0.6.dev50"
4
+ __version__ = "1.0.6.dev51"