raccoonai 0.1.0a2__py3-none-any.whl → 0.1.0a3__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 raccoonai might be problematic. Click here for more details.

raccoonai/_base_client.py CHANGED
@@ -418,10 +418,17 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
418
418
  if idempotency_header and options.method.lower() != "get" and idempotency_header not in headers:
419
419
  headers[idempotency_header] = options.idempotency_key or self._idempotency_key()
420
420
 
421
- # Don't set the retry count header if it was already set or removed by the caller. We check
421
+ # Don't set these headers if they were already set or removed by the caller. We check
422
422
  # `custom_headers`, which can contain `Omit()`, instead of `headers` to account for the removal case.
423
- if "x-stainless-retry-count" not in (header.lower() for header in custom_headers):
423
+ lower_custom_headers = [header.lower() for header in custom_headers]
424
+ if "x-stainless-retry-count" not in lower_custom_headers:
424
425
  headers["x-stainless-retry-count"] = str(retries_taken)
426
+ if "x-stainless-read-timeout" not in lower_custom_headers:
427
+ timeout = self.timeout if isinstance(options.timeout, NotGiven) else options.timeout
428
+ if isinstance(timeout, Timeout):
429
+ timeout = timeout.read
430
+ if timeout is not None:
431
+ headers["x-stainless-read-timeout"] = str(timeout)
425
432
 
426
433
  return headers
427
434
 
raccoonai/_constants.py CHANGED
@@ -6,7 +6,7 @@ RAW_RESPONSE_HEADER = "X-Stainless-Raw-Response"
6
6
  OVERRIDE_CAST_TO_HEADER = "____stainless_override_cast_to"
7
7
 
8
8
  # default timeout is 1 minute
9
- DEFAULT_TIMEOUT = httpx.Timeout(timeout=60.0, connect=5.0)
9
+ DEFAULT_TIMEOUT = httpx.Timeout(timeout=60, connect=5.0)
10
10
  DEFAULT_MAX_RETRIES = 2
11
11
  DEFAULT_CONNECTION_LIMITS = httpx.Limits(max_connections=100, max_keepalive_connections=20)
12
12
 
raccoonai/_models.py CHANGED
@@ -172,7 +172,7 @@ class BaseModel(pydantic.BaseModel):
172
172
  @override
173
173
  def __str__(self) -> str:
174
174
  # mypy complains about an invalid self arg
175
- return f'{self.__repr_name__()}({self.__repr_str__(", ")})' # type: ignore[misc]
175
+ return f"{self.__repr_name__()}({self.__repr_str__(', ')})" # type: ignore[misc]
176
176
 
177
177
  # Override the 'construct' method in a way that supports recursive parsing without validation.
178
178
  # Based on https://github.com/samuelcolvin/pydantic/issues/1168#issuecomment-817742836.
@@ -426,10 +426,16 @@ def construct_type(*, value: object, type_: object) -> object:
426
426
 
427
427
  If the given value does not match the expected type then it is returned as-is.
428
428
  """
429
+
430
+ # store a reference to the original type we were given before we extract any inner
431
+ # types so that we can properly resolve forward references in `TypeAliasType` annotations
432
+ original_type = None
433
+
429
434
  # we allow `object` as the input type because otherwise, passing things like
430
435
  # `Literal['value']` will be reported as a type error by type checkers
431
436
  type_ = cast("type[object]", type_)
432
437
  if is_type_alias_type(type_):
438
+ original_type = type_ # type: ignore[unreachable]
433
439
  type_ = type_.__value__ # type: ignore[unreachable]
434
440
 
435
441
  # unwrap `Annotated[T, ...]` -> `T`
@@ -446,7 +452,7 @@ def construct_type(*, value: object, type_: object) -> object:
446
452
 
447
453
  if is_union(origin):
448
454
  try:
449
- return validate_type(type_=cast("type[object]", type_), value=value)
455
+ return validate_type(type_=cast("type[object]", original_type or type_), value=value)
450
456
  except Exception:
451
457
  pass
452
458
 
@@ -25,7 +25,7 @@ from ._typing import (
25
25
  is_annotated_type,
26
26
  strip_annotated_type,
27
27
  )
28
- from .._compat import model_dump, is_typeddict
28
+ from .._compat import get_origin, model_dump, is_typeddict
29
29
 
30
30
  _T = TypeVar("_T")
31
31
 
@@ -164,9 +164,14 @@ def _transform_recursive(
164
164
  inner_type = annotation
165
165
 
166
166
  stripped_type = strip_annotated_type(inner_type)
167
+ origin = get_origin(stripped_type) or stripped_type
167
168
  if is_typeddict(stripped_type) and is_mapping(data):
168
169
  return _transform_typeddict(data, stripped_type)
169
170
 
171
+ if origin == dict and is_mapping(data):
172
+ items_type = get_args(stripped_type)[1]
173
+ return {key: _transform_recursive(value, annotation=items_type) for key, value in data.items()}
174
+
170
175
  if (
171
176
  # List[T]
172
177
  (is_list_type(stripped_type) and is_list(data))
@@ -307,9 +312,14 @@ async def _async_transform_recursive(
307
312
  inner_type = annotation
308
313
 
309
314
  stripped_type = strip_annotated_type(inner_type)
315
+ origin = get_origin(stripped_type) or stripped_type
310
316
  if is_typeddict(stripped_type) and is_mapping(data):
311
317
  return await _async_transform_typeddict(data, stripped_type)
312
318
 
319
+ if origin == dict and is_mapping(data):
320
+ items_type = get_args(stripped_type)[1]
321
+ return {key: _transform_recursive(value, annotation=items_type) for key, value in data.items()}
322
+
313
323
  if (
314
324
  # List[T]
315
325
  (is_list_type(stripped_type) and is_list(data))
raccoonai/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "raccoonai"
4
- __version__ = "0.1.0-alpha.2" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.3" # x-release-please-version
@@ -80,7 +80,7 @@ class LamResource(SyncAPIResource):
80
80
  raccoon_passcode: The raccoon passcode associated with the end user on behalf of which the call is
81
81
  being made.
82
82
 
83
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
83
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
84
84
  solving.
85
85
 
86
86
  app_url: This is the entrypoint URL for the web agent.
@@ -136,7 +136,7 @@ class LamResource(SyncAPIResource):
136
136
 
137
137
  stream: Whether the response should be streamed back or not.
138
138
 
139
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
139
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
140
140
  solving.
141
141
 
142
142
  app_url: This is the entrypoint URL for the web agent.
@@ -190,7 +190,7 @@ class LamResource(SyncAPIResource):
190
190
 
191
191
  stream: Whether the response should be streamed back or not.
192
192
 
193
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
193
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
194
194
  solving.
195
195
 
196
196
  app_url: This is the entrypoint URL for the web agent.
@@ -279,7 +279,7 @@ class LamResource(SyncAPIResource):
279
279
  raccoon_passcode: The raccoon passcode associated with the end user on behalf of which the call is
280
280
  being made.
281
281
 
282
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
282
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
283
283
  solving.
284
284
 
285
285
  integration_id: The unique identifier for the integration being called.
@@ -324,7 +324,7 @@ class LamResource(SyncAPIResource):
324
324
 
325
325
  stream: Whether the response should be streamed back or not.
326
326
 
327
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
327
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
328
328
  solving.
329
329
 
330
330
  integration_id: The unique identifier for the integration being called.
@@ -367,7 +367,7 @@ class LamResource(SyncAPIResource):
367
367
 
368
368
  stream: Whether the response should be streamed back or not.
369
369
 
370
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
370
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
371
371
  solving.
372
372
 
373
373
  integration_id: The unique identifier for the integration being called.
@@ -455,7 +455,7 @@ class LamResource(SyncAPIResource):
455
455
  raccoon_passcode: The raccoon passcode associated with the end user on behalf of which the call is
456
456
  being made.
457
457
 
458
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
458
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
459
459
  solving.
460
460
 
461
461
  app_url: This is the entrypoint URL for the web agent.
@@ -504,7 +504,7 @@ class LamResource(SyncAPIResource):
504
504
 
505
505
  stream: Whether the response should be streamed back or not.
506
506
 
507
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
507
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
508
508
  solving.
509
509
 
510
510
  app_url: This is the entrypoint URL for the web agent.
@@ -551,7 +551,7 @@ class LamResource(SyncAPIResource):
551
551
 
552
552
  stream: Whether the response should be streamed back or not.
553
553
 
554
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
554
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
555
555
  solving.
556
556
 
557
557
  app_url: This is the entrypoint URL for the web agent.
@@ -657,7 +657,7 @@ class AsyncLamResource(AsyncAPIResource):
657
657
  raccoon_passcode: The raccoon passcode associated with the end user on behalf of which the call is
658
658
  being made.
659
659
 
660
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
660
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
661
661
  solving.
662
662
 
663
663
  app_url: This is the entrypoint URL for the web agent.
@@ -713,7 +713,7 @@ class AsyncLamResource(AsyncAPIResource):
713
713
 
714
714
  stream: Whether the response should be streamed back or not.
715
715
 
716
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
716
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
717
717
  solving.
718
718
 
719
719
  app_url: This is the entrypoint URL for the web agent.
@@ -767,7 +767,7 @@ class AsyncLamResource(AsyncAPIResource):
767
767
 
768
768
  stream: Whether the response should be streamed back or not.
769
769
 
770
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
770
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
771
771
  solving.
772
772
 
773
773
  app_url: This is the entrypoint URL for the web agent.
@@ -856,7 +856,7 @@ class AsyncLamResource(AsyncAPIResource):
856
856
  raccoon_passcode: The raccoon passcode associated with the end user on behalf of which the call is
857
857
  being made.
858
858
 
859
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
859
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
860
860
  solving.
861
861
 
862
862
  integration_id: The unique identifier for the integration being called.
@@ -901,7 +901,7 @@ class AsyncLamResource(AsyncAPIResource):
901
901
 
902
902
  stream: Whether the response should be streamed back or not.
903
903
 
904
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
904
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
905
905
  solving.
906
906
 
907
907
  integration_id: The unique identifier for the integration being called.
@@ -944,7 +944,7 @@ class AsyncLamResource(AsyncAPIResource):
944
944
 
945
945
  stream: Whether the response should be streamed back or not.
946
946
 
947
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
947
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
948
948
  solving.
949
949
 
950
950
  integration_id: The unique identifier for the integration being called.
@@ -1032,7 +1032,7 @@ class AsyncLamResource(AsyncAPIResource):
1032
1032
  raccoon_passcode: The raccoon passcode associated with the end user on behalf of which the call is
1033
1033
  being made.
1034
1034
 
1035
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
1035
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
1036
1036
  solving.
1037
1037
 
1038
1038
  app_url: This is the entrypoint URL for the web agent.
@@ -1081,7 +1081,7 @@ class AsyncLamResource(AsyncAPIResource):
1081
1081
 
1082
1082
  stream: Whether the response should be streamed back or not.
1083
1083
 
1084
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
1084
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
1085
1085
  solving.
1086
1086
 
1087
1087
  app_url: This is the entrypoint URL for the web agent.
@@ -1128,7 +1128,7 @@ class AsyncLamResource(AsyncAPIResource):
1128
1128
 
1129
1129
  stream: Whether the response should be streamed back or not.
1130
1130
 
1131
- advanced: Advanced configuration options for the task, such as ad-blocking and CAPTCHA
1131
+ advanced: Advanced configuration options for the session, such as ad-blocking and CAPTCHA
1132
1132
  solving.
1133
1133
 
1134
1134
  app_url: This is the entrypoint URL for the web agent.
@@ -20,7 +20,7 @@ class LamExtractParamsBase(TypedDict, total=False):
20
20
 
21
21
  advanced: Optional[Advanced]
22
22
  """
23
- Advanced configuration options for the task, such as ad-blocking and CAPTCHA
23
+ Advanced configuration options for the session, such as ad-blocking and CAPTCHA
24
24
  solving.
25
25
  """
26
26
 
@@ -22,7 +22,7 @@ class LamIntegrationRunParamsBase(TypedDict, total=False):
22
22
 
23
23
  advanced: Optional[Advanced]
24
24
  """
25
- Advanced configuration options for the task, such as ad-blocking and CAPTCHA
25
+ Advanced configuration options for the session, such as ad-blocking and CAPTCHA
26
26
  solving.
27
27
  """
28
28
 
@@ -22,7 +22,7 @@ class UnionMember0(BaseModel):
22
22
  """Additional metadata or details related to the integration task."""
23
23
 
24
24
  task_status: str
25
- """The current status of the integration task.
25
+ """The current status of the extraction task.
26
26
 
27
27
  For example: 'STARTING', 'PROCESSING', 'DONE', 'HUMAN_INTERACTION', or
28
28
  'FAILURE'.
@@ -43,7 +43,7 @@ class IntegrationResponse(BaseModel):
43
43
  """Additional metadata or details related to the integration task."""
44
44
 
45
45
  task_status: str
46
- """The current status of the integration task.
46
+ """The current status of the extraction task.
47
47
 
48
48
  For example: 'STARTING', 'PROCESSING', 'DONE', 'HUMAN_INTERACTION', or
49
49
  'FAILURE'.
@@ -20,7 +20,7 @@ class LamRunParamsBase(TypedDict, total=False):
20
20
 
21
21
  advanced: Optional[Advanced]
22
22
  """
23
- Advanced configuration options for the task, such as ad-blocking and CAPTCHA
23
+ Advanced configuration options for the session, such as ad-blocking and CAPTCHA
24
24
  solving.
25
25
  """
26
26
 
@@ -17,7 +17,7 @@ class LamRunResponse(BaseModel):
17
17
  """Additional metadata or details related to the run task."""
18
18
 
19
19
  task_status: str
20
- """The current status of the run task.
20
+ """The current status of the extraction task.
21
21
 
22
22
  For example: 'STARTING', 'PROCESSING', 'DONE', 'HUMAN_INTERACTION', or
23
23
  'FAILURE'.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: raccoonai
3
- Version: 0.1.0a2
3
+ Version: 0.1.0a3
4
4
  Summary: The official Python library for the raccoonAI API
5
5
  Project-URL: Homepage, https://github.com/flyingraccoonai/raccoonai-python
6
6
  Project-URL: Repository, https://github.com/flyingraccoonai/raccoonai-python
@@ -1,17 +1,17 @@
1
1
  raccoonai/__init__.py,sha256=ut5jCAExi9IzT9pzrjpsJoVhn6bzWI6jIXNXB-fXBY4,2523
2
- raccoonai/_base_client.py,sha256=QGibzqHn-_Ri82eqYs-Xr6tG4HIu4dIkK_ZSAnIVHeM,68133
2
+ raccoonai/_base_client.py,sha256=tSb3kMhVVEeGnteNBbDp7-5g2FE8FwJwYIqS10tR8Vk,68530
3
3
  raccoonai/_client.py,sha256=WBaHMcDUAb0PfzgvSOmIlaYwP7VrdbY0nXm_SLft3PQ,18397
4
4
  raccoonai/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
- raccoonai/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
5
+ raccoonai/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  raccoonai/_exceptions.py,sha256=Y-DcD2M8xkSw8IEkk4KHj73O8GQxCtWm4HWYQ02j7z8,3226
7
7
  raccoonai/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
- raccoonai/_models.py,sha256=B6f-C-F-PbDp3jRKCLksaAS9osC2g1xs7DpoZV1dlUE,28659
8
+ raccoonai/_models.py,sha256=PDLSNsn3Umxm3UMZPgyBiyN308rRzzPX6F9NO9FU2vs,28943
9
9
  raccoonai/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
10
  raccoonai/_resource.py,sha256=zfxyYCvzutc1dvCP-j9UPc1sn9U8F-X9gGyqleOvCxY,1118
11
11
  raccoonai/_response.py,sha256=q3bfYfS84vvIRPz_wL8djh6ir9UHGDzzF2l3gKDOWX8,28807
12
12
  raccoonai/_streaming.py,sha256=zHnkREZO5v33YJ7P0YZ7KhJET4ZzevGw1JzRY2-Mls4,10112
13
13
  raccoonai/_types.py,sha256=sN2zE-vBl9KBlBKL8fkN2DNZnItdjDl-3fTpP9cg69w,6146
14
- raccoonai/_version.py,sha256=yRS6xPfQVMiTl_PBe47h5wYgLz7CFF9COhvLLYm375c,169
14
+ raccoonai/_version.py,sha256=n5LDV0sTJYwNQCNppYqlN2CQg2EkjDZDGyiadlEyFgA,169
15
15
  raccoonai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  raccoonai/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  raccoonai/_utils/_logs.py,sha256=Af3FKkE-LAPzYTl8bnFD4yPvPBIO-QyCra-r9_dSmOM,784
@@ -19,26 +19,26 @@ raccoonai/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,19
19
19
  raccoonai/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
20
  raccoonai/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
21
21
  raccoonai/_utils/_sync.py,sha256=jJl-iCEaZZUAkq4IUtzN1-aMsKTUFaNoNbeYnnpQjIQ,2438
22
- raccoonai/_utils/_transform.py,sha256=Dkkyr7OveGmOolepcvXmVJWE3kqim4b0nM0h7yWbgeY,13468
22
+ raccoonai/_utils/_transform.py,sha256=tsSFOIZ7iczaUsMSGBD_iSFOOdUyT2xtkcq1xyF0L9o,13986
23
23
  raccoonai/_utils/_typing.py,sha256=nTJz0jcrQbEgxwy4TtAkNxuU0QHHlmc6mQtA6vIR8tg,4501
24
24
  raccoonai/_utils/_utils.py,sha256=8UmbPOy_AAr2uUjjFui-VZSrVBHRj6bfNEKRp5YZP2A,12004
25
25
  raccoonai/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
26
  raccoonai/resources/__init__.py,sha256=kSwRlkcSl9bYen9uCJOA5g0Fn0Z0TmVl_5oxvGjoTwU,950
27
27
  raccoonai/resources/fleet.py,sha256=KE2aRct0YfUfaDRDw5O1hGwcyiqCrdKF5LCYleAN1Xo,18579
28
- raccoonai/resources/lam.py,sha256=pfdPl0ZhIb4cJsgQKNukIdQnVi85lhOWjtPwInFDnZ0,50734
28
+ raccoonai/resources/lam.py,sha256=JFPrTckYkE4en1VxLtwveaDcUC2qI-fq3HFaY3h7yKg,50788
29
29
  raccoonai/types/__init__.py,sha256=WJT-J_FVRZNpVlalIHmWsb_VLFJHPSxhm9u_wKUipKM,962
30
30
  raccoonai/types/fleet_create_params.py,sha256=iNUUKzQxgkrSjsxBLSpkuIiW1kTLOPyNIe5sANPwOB4,2091
31
31
  raccoonai/types/fleet_create_response.py,sha256=Z-a9Hj89f6bwGv0r5juOlvCp1zF29a0cyZpLC1m-VT4,545
32
32
  raccoonai/types/fleet_logs_response.py,sha256=Lzamw3eqPNXzArU0ujxnXav2AwmIM8OZd7McMzheVNA,360
33
33
  raccoonai/types/fleet_status_response.py,sha256=TyXCx_d9iTa44urJsTemxu1hNdBsKjHWZd8ir-_B0CE,397
34
34
  raccoonai/types/fleet_terminate_response.py,sha256=ls6PaLQdCfoHef6PBzJ_C-9x8O1GH1Vo1wxlxA4maaE,403
35
- raccoonai/types/lam_extract_params.py,sha256=CJ0d-diMrrWEMzfphIojTe1a2O_sVM2x_1-qx2lJIys,2101
35
+ raccoonai/types/lam_extract_params.py,sha256=zHk316g9RZ1yTme3XdOojyC4u-0HW0fQUosVuRjkigg,2104
36
36
  raccoonai/types/lam_extract_response.py,sha256=YNM4brNLSArNTYCPi-r-edqOOx4zLpQuJliZz4-FKxQ,802
37
- raccoonai/types/lam_integration_run_params.py,sha256=ES7l2hzbKj6MHh1d7Pob3FgIaQWelLTpmkaL69vtRNo,1719
38
- raccoonai/types/lam_integration_run_response.py,sha256=TmwjLhSmFJYIfuUEZFtzL3UV1YRytAsqJXMdXvkSJ6E,1458
39
- raccoonai/types/lam_run_params.py,sha256=10tqxIwY0sNASfXZWpsg81D9pHkcFiXf5spuyaklD9Y,1797
40
- raccoonai/types/lam_run_response.py,sha256=CGM_DRIg_Ior-elWtzii6XM2dS-CvuIopi8yPu8_j2o,599
41
- raccoonai-0.1.0a2.dist-info/METADATA,sha256=l7zWEc5r5hDgx5VNkSHCXBYTdXLggteq_EZQC98cIgg,14350
42
- raccoonai-0.1.0a2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
43
- raccoonai-0.1.0a2.dist-info/licenses/LICENSE,sha256=enGvZ2fGU7wGgMPWkgyWhnsFhCpxwdeG_selO_ovoTM,11340
44
- raccoonai-0.1.0a2.dist-info/RECORD,,
37
+ raccoonai/types/lam_integration_run_params.py,sha256=fuXnByzGxq2ZurCp6P4ZpkpuS0ITQXGH6atMeUKu8F8,1722
38
+ raccoonai/types/lam_integration_run_response.py,sha256=OpCNhoZc4puHY59lwmlmd_Wa5cRmlR_o0BFHV-tECoA,1456
39
+ raccoonai/types/lam_run_params.py,sha256=FY9Y9RYQloTNM9FU3QMPdl1Szr6-yMB4ddJVKfKq1hA,1800
40
+ raccoonai/types/lam_run_response.py,sha256=TlUs1l9dDeDSxn30dbfAklTxQV3O5ZcwlSS2cB7GESw,606
41
+ raccoonai-0.1.0a3.dist-info/METADATA,sha256=ymTOPNOik_a80KJyNo5dOgm9f322JE3wpDs0-JH5RMI,14350
42
+ raccoonai-0.1.0a3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
43
+ raccoonai-0.1.0a3.dist-info/licenses/LICENSE,sha256=enGvZ2fGU7wGgMPWkgyWhnsFhCpxwdeG_selO_ovoTM,11340
44
+ raccoonai-0.1.0a3.dist-info/RECORD,,