raccoonai 0.1.0a12__py3-none-any.whl → 0.1.0a15__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/_client.py +2 -2
- raccoonai/_models.py +6 -3
- raccoonai/_utils/_transform.py +1 -1
- raccoonai/_version.py +1 -1
- raccoonai/resources/fleet/sessions.py +4 -4
- raccoonai/resources/lam/tasks.py +4 -4
- raccoonai/types/fleet/session_all_params.py +4 -2
- raccoonai/types/fleet/session_all_response.py +2 -2
- raccoonai/types/fleet/session_create_params.py +12 -9
- raccoonai/types/fleet/session_create_response.py +1 -1
- raccoonai/types/lam/task_all_params.py +4 -2
- raccoonai/types/lam/task_all_response.py +2 -2
- raccoonai/types/lam_run_params.py +18 -8
- {raccoonai-0.1.0a12.dist-info → raccoonai-0.1.0a15.dist-info}/METADATA +5 -7
- {raccoonai-0.1.0a12.dist-info → raccoonai-0.1.0a15.dist-info}/RECORD +17 -17
- {raccoonai-0.1.0a12.dist-info → raccoonai-0.1.0a15.dist-info}/WHEEL +1 -1
- {raccoonai-0.1.0a12.dist-info → raccoonai-0.1.0a15.dist-info}/licenses/LICENSE +0 -0
raccoonai/_client.py
CHANGED
|
@@ -48,8 +48,8 @@ __all__ = [
|
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
ENVIRONMENTS: Dict[str, str] = {
|
|
51
|
-
"production": "https://api.
|
|
52
|
-
"staging": "https://staging.
|
|
51
|
+
"production": "https://api.raccoonai.tech",
|
|
52
|
+
"staging": "https://staging.raccoonai.tech",
|
|
53
53
|
"local": "http://localhost:3800",
|
|
54
54
|
}
|
|
55
55
|
|
raccoonai/_models.py
CHANGED
|
@@ -65,7 +65,7 @@ from ._compat import (
|
|
|
65
65
|
from ._constants import RAW_RESPONSE_HEADER
|
|
66
66
|
|
|
67
67
|
if TYPE_CHECKING:
|
|
68
|
-
from pydantic_core.core_schema import ModelField, LiteralSchema, ModelFieldsSchema
|
|
68
|
+
from pydantic_core.core_schema import ModelField, ModelSchema, LiteralSchema, ModelFieldsSchema
|
|
69
69
|
|
|
70
70
|
__all__ = ["BaseModel", "GenericModel"]
|
|
71
71
|
|
|
@@ -646,15 +646,18 @@ def _build_discriminated_union_meta(*, union: type, meta_annotations: tuple[Any,
|
|
|
646
646
|
|
|
647
647
|
def _extract_field_schema_pv2(model: type[BaseModel], field_name: str) -> ModelField | None:
|
|
648
648
|
schema = model.__pydantic_core_schema__
|
|
649
|
+
if schema["type"] == "definitions":
|
|
650
|
+
schema = schema["schema"]
|
|
651
|
+
|
|
649
652
|
if schema["type"] != "model":
|
|
650
653
|
return None
|
|
651
654
|
|
|
655
|
+
schema = cast("ModelSchema", schema)
|
|
652
656
|
fields_schema = schema["schema"]
|
|
653
657
|
if fields_schema["type"] != "model-fields":
|
|
654
658
|
return None
|
|
655
659
|
|
|
656
660
|
fields_schema = cast("ModelFieldsSchema", fields_schema)
|
|
657
|
-
|
|
658
661
|
field = fields_schema["fields"].get(field_name)
|
|
659
662
|
if not field:
|
|
660
663
|
return None
|
|
@@ -678,7 +681,7 @@ def set_pydantic_config(typ: Any, config: pydantic.ConfigDict) -> None:
|
|
|
678
681
|
setattr(typ, "__pydantic_config__", config) # noqa: B010
|
|
679
682
|
|
|
680
683
|
|
|
681
|
-
# our use of
|
|
684
|
+
# our use of subclassing here causes weirdness for type checkers,
|
|
682
685
|
# so we just pretend that we don't subclass
|
|
683
686
|
if TYPE_CHECKING:
|
|
684
687
|
GenericModel = BaseModel
|
raccoonai/_utils/_transform.py
CHANGED
|
@@ -126,7 +126,7 @@ def _get_annotated_type(type_: type) -> type | None:
|
|
|
126
126
|
def _maybe_transform_key(key: str, type_: type) -> str:
|
|
127
127
|
"""Transform the given `data` based on the annotations provided in `type_`.
|
|
128
128
|
|
|
129
|
-
Note: this function only looks at `Annotated` types that contain `
|
|
129
|
+
Note: this function only looks at `Annotated` types that contain `PropertyInfo` metadata.
|
|
130
130
|
"""
|
|
131
131
|
annotated_type = _get_annotated_type(type_)
|
|
132
132
|
if annotated_type is None:
|
raccoonai/_version.py
CHANGED
|
@@ -123,7 +123,7 @@ class SessionsResource(SyncAPIResource):
|
|
|
123
123
|
self,
|
|
124
124
|
*,
|
|
125
125
|
end_time: Optional[int] | NotGiven = NOT_GIVEN,
|
|
126
|
-
execution_type: Optional[List[Literal["
|
|
126
|
+
execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
|
|
127
127
|
limit: Optional[int] | NotGiven = NOT_GIVEN,
|
|
128
128
|
page: Optional[int] | NotGiven = NOT_GIVEN,
|
|
129
129
|
raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
|
|
@@ -146,7 +146,7 @@ class SessionsResource(SyncAPIResource):
|
|
|
146
146
|
Args:
|
|
147
147
|
end_time: Filter sessions created before this Unix timestamp (in milliseconds).
|
|
148
148
|
|
|
149
|
-
execution_type: Filter sessions by execution type (e.g., '
|
|
149
|
+
execution_type: Filter sessions by execution type (e.g., 'default', 'deepsearch').
|
|
150
150
|
|
|
151
151
|
limit: Number of sessions per page (maximum 100).
|
|
152
152
|
|
|
@@ -424,7 +424,7 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
424
424
|
self,
|
|
425
425
|
*,
|
|
426
426
|
end_time: Optional[int] | NotGiven = NOT_GIVEN,
|
|
427
|
-
execution_type: Optional[List[Literal["
|
|
427
|
+
execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
|
|
428
428
|
limit: Optional[int] | NotGiven = NOT_GIVEN,
|
|
429
429
|
page: Optional[int] | NotGiven = NOT_GIVEN,
|
|
430
430
|
raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
|
|
@@ -447,7 +447,7 @@ class AsyncSessionsResource(AsyncAPIResource):
|
|
|
447
447
|
Args:
|
|
448
448
|
end_time: Filter sessions created before this Unix timestamp (in milliseconds).
|
|
449
449
|
|
|
450
|
-
execution_type: Filter sessions by execution type (e.g., '
|
|
450
|
+
execution_type: Filter sessions by execution type (e.g., 'default', 'deepsearch').
|
|
451
451
|
|
|
452
452
|
limit: Number of sessions per page (maximum 100).
|
|
453
453
|
|
raccoonai/resources/lam/tasks.py
CHANGED
|
@@ -52,7 +52,7 @@ class TasksResource(SyncAPIResource):
|
|
|
52
52
|
self,
|
|
53
53
|
*,
|
|
54
54
|
end_time: Optional[int] | NotGiven = NOT_GIVEN,
|
|
55
|
-
execution_type: Optional[List[Literal["
|
|
55
|
+
execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
|
|
56
56
|
limit: Optional[int] | NotGiven = NOT_GIVEN,
|
|
57
57
|
page: Optional[int] | NotGiven = NOT_GIVEN,
|
|
58
58
|
raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
|
|
@@ -74,7 +74,7 @@ class TasksResource(SyncAPIResource):
|
|
|
74
74
|
Args:
|
|
75
75
|
end_time: Filter tasks created before this Unix timestamp (in milliseconds).
|
|
76
76
|
|
|
77
|
-
execution_type: Filter tasks by execution type (e.g., '
|
|
77
|
+
execution_type: Filter tasks by execution type (e.g., 'default', 'deepsearch').
|
|
78
78
|
|
|
79
79
|
limit: Number of tasks per page (maximum 100).
|
|
80
80
|
|
|
@@ -183,7 +183,7 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
|
183
183
|
self,
|
|
184
184
|
*,
|
|
185
185
|
end_time: Optional[int] | NotGiven = NOT_GIVEN,
|
|
186
|
-
execution_type: Optional[List[Literal["
|
|
186
|
+
execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
|
|
187
187
|
limit: Optional[int] | NotGiven = NOT_GIVEN,
|
|
188
188
|
page: Optional[int] | NotGiven = NOT_GIVEN,
|
|
189
189
|
raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
|
|
@@ -205,7 +205,7 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
|
205
205
|
Args:
|
|
206
206
|
end_time: Filter tasks created before this Unix timestamp (in milliseconds).
|
|
207
207
|
|
|
208
|
-
execution_type: Filter tasks by execution type (e.g., '
|
|
208
|
+
execution_type: Filter tasks by execution type (e.g., 'default', 'deepsearch').
|
|
209
209
|
|
|
210
210
|
limit: Number of tasks per page (maximum 100).
|
|
211
211
|
|
|
@@ -14,8 +14,10 @@ class SessionAllParams(TypedDict, total=False):
|
|
|
14
14
|
end_time: Optional[int]
|
|
15
15
|
"""Filter sessions created before this Unix timestamp (in milliseconds)."""
|
|
16
16
|
|
|
17
|
-
execution_type: Annotated[
|
|
18
|
-
|
|
17
|
+
execution_type: Annotated[
|
|
18
|
+
Optional[List[Literal["default", "deepsearch", "fleet"]]], PropertyInfo(alias="executionType")
|
|
19
|
+
]
|
|
20
|
+
"""Filter sessions by execution type (e.g., 'default', 'deepsearch')."""
|
|
19
21
|
|
|
20
22
|
limit: Optional[int]
|
|
21
23
|
"""Number of sessions per page (maximum 100)."""
|
|
@@ -25,8 +25,8 @@ class Session(BaseModel):
|
|
|
25
25
|
execution_time: int = FieldInfo(alias="executionTime")
|
|
26
26
|
"""Time taken for the session execution (in milliseconds)."""
|
|
27
27
|
|
|
28
|
-
execution_type: Literal["
|
|
29
|
-
"""The type of execution performed (e.g., '
|
|
28
|
+
execution_type: Literal["default", "deepsearch", "fleet"] = FieldInfo(alias="executionType")
|
|
29
|
+
"""The type of execution performed (e.g., 'default', 'deepsearch')."""
|
|
30
30
|
|
|
31
31
|
inputs: object
|
|
32
32
|
"""Input parameters used for the session."""
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict, List, Iterable, Optional
|
|
6
|
-
from typing_extensions import Literal, TypedDict
|
|
5
|
+
from typing import Dict, List, Union, Iterable, Optional
|
|
6
|
+
from typing_extensions import Literal, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
-
__all__ = ["SessionCreateParams", "Advanced", "AdvancedProxy", "Settings"]
|
|
8
|
+
__all__ = ["SessionCreateParams", "Advanced", "AdvancedProxy", "AdvancedProxyProxySettings", "Settings"]
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class SessionCreateParams(TypedDict, total=False):
|
|
@@ -43,16 +43,13 @@ class SessionCreateParams(TypedDict, total=False):
|
|
|
43
43
|
"""The entrypoint url for the session."""
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
class
|
|
46
|
+
class AdvancedProxyProxySettings(TypedDict, total=False):
|
|
47
47
|
city: Optional[str]
|
|
48
48
|
"""Target city."""
|
|
49
49
|
|
|
50
50
|
country: Optional[str]
|
|
51
51
|
"""Target country (2-letter ISO code)."""
|
|
52
52
|
|
|
53
|
-
enable: bool
|
|
54
|
-
"""Whether to use a proxy for the browser session."""
|
|
55
|
-
|
|
56
53
|
state: Optional[str]
|
|
57
54
|
"""Target state (2-letter code)."""
|
|
58
55
|
|
|
@@ -60,6 +57,9 @@ class AdvancedProxy(TypedDict, total=False):
|
|
|
60
57
|
"""Target postal code."""
|
|
61
58
|
|
|
62
59
|
|
|
60
|
+
AdvancedProxy: TypeAlias = Union[AdvancedProxyProxySettings, bool]
|
|
61
|
+
|
|
62
|
+
|
|
63
63
|
class Advanced(TypedDict, total=False):
|
|
64
64
|
block_ads: Optional[bool]
|
|
65
65
|
"""Whether to block advertisements during the browser session."""
|
|
@@ -67,8 +67,11 @@ class Advanced(TypedDict, total=False):
|
|
|
67
67
|
extension_ids: Optional[Iterable[object]]
|
|
68
68
|
"""list of extension ids"""
|
|
69
69
|
|
|
70
|
-
proxy:
|
|
71
|
-
"""Proxy details for the browser session.
|
|
70
|
+
proxy: AdvancedProxy
|
|
71
|
+
"""Proxy details for the browser session.
|
|
72
|
+
|
|
73
|
+
Automatically defaults to True if solve_captchas is on.
|
|
74
|
+
"""
|
|
72
75
|
|
|
73
76
|
solve_captchas: Optional[bool]
|
|
74
77
|
"""Whether to attempt automatic CAPTCHA solving."""
|
|
@@ -14,7 +14,7 @@ class SessionCreateResponse(BaseModel):
|
|
|
14
14
|
session_id: str
|
|
15
15
|
"""A unique identifier for the created session."""
|
|
16
16
|
|
|
17
|
-
status: Literal["starting", "running", "terminated", "completed", "unknown"]
|
|
17
|
+
status: Literal["starting", "running", "terminated", "completed", "unknown", "success", "failure"]
|
|
18
18
|
"""The current status of the session."""
|
|
19
19
|
|
|
20
20
|
websocket_url: str
|
|
@@ -14,8 +14,10 @@ class TaskAllParams(TypedDict, total=False):
|
|
|
14
14
|
end_time: Optional[int]
|
|
15
15
|
"""Filter tasks created before this Unix timestamp (in milliseconds)."""
|
|
16
16
|
|
|
17
|
-
execution_type: Annotated[
|
|
18
|
-
|
|
17
|
+
execution_type: Annotated[
|
|
18
|
+
Optional[List[Literal["default", "deepsearch", "fleet"]]], PropertyInfo(alias="executionType")
|
|
19
|
+
]
|
|
20
|
+
"""Filter tasks by execution type (e.g., 'default', 'deepsearch')."""
|
|
19
21
|
|
|
20
22
|
limit: Optional[int]
|
|
21
23
|
"""Number of tasks per page (maximum 100)."""
|
|
@@ -25,8 +25,8 @@ class Task(BaseModel):
|
|
|
25
25
|
execution_time: int = FieldInfo(alias="executionTime")
|
|
26
26
|
"""Time taken for the task execution (in seconds)."""
|
|
27
27
|
|
|
28
|
-
execution_type: Literal["
|
|
29
|
-
"""The type of execution performed (e.g., '
|
|
28
|
+
execution_type: Literal["default", "deepsearch"] = FieldInfo(alias="executionType")
|
|
29
|
+
"""The type of execution performed (e.g., 'default', 'deepsearch')."""
|
|
30
30
|
|
|
31
31
|
inputs: object
|
|
32
32
|
"""Input parameters used for the task execution."""
|
|
@@ -3,9 +3,16 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import Union, Iterable, Optional
|
|
6
|
-
from typing_extensions import Literal, Required, TypedDict
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
|
-
__all__ = [
|
|
8
|
+
__all__ = [
|
|
9
|
+
"LamRunParamsBase",
|
|
10
|
+
"Advanced",
|
|
11
|
+
"AdvancedProxy",
|
|
12
|
+
"AdvancedProxyProxySettings",
|
|
13
|
+
"LamRunParamsNonStreaming",
|
|
14
|
+
"LamRunParamsStreaming",
|
|
15
|
+
]
|
|
9
16
|
|
|
10
17
|
|
|
11
18
|
class LamRunParamsBase(TypedDict, total=False):
|
|
@@ -47,16 +54,13 @@ class LamRunParamsBase(TypedDict, total=False):
|
|
|
47
54
|
"""
|
|
48
55
|
|
|
49
56
|
|
|
50
|
-
class
|
|
57
|
+
class AdvancedProxyProxySettings(TypedDict, total=False):
|
|
51
58
|
city: Optional[str]
|
|
52
59
|
"""Target city."""
|
|
53
60
|
|
|
54
61
|
country: Optional[str]
|
|
55
62
|
"""Target country (2-letter ISO code)."""
|
|
56
63
|
|
|
57
|
-
enable: bool
|
|
58
|
-
"""Whether to use a proxy for the browser session."""
|
|
59
|
-
|
|
60
64
|
state: Optional[str]
|
|
61
65
|
"""Target state (2-letter code)."""
|
|
62
66
|
|
|
@@ -64,6 +68,9 @@ class AdvancedProxy(TypedDict, total=False):
|
|
|
64
68
|
"""Target postal code."""
|
|
65
69
|
|
|
66
70
|
|
|
71
|
+
AdvancedProxy: TypeAlias = Union[AdvancedProxyProxySettings, bool]
|
|
72
|
+
|
|
73
|
+
|
|
67
74
|
class Advanced(TypedDict, total=False):
|
|
68
75
|
block_ads: Optional[bool]
|
|
69
76
|
"""Whether to block advertisements during the browser session."""
|
|
@@ -71,8 +78,11 @@ class Advanced(TypedDict, total=False):
|
|
|
71
78
|
extension_ids: Optional[Iterable[object]]
|
|
72
79
|
"""list of extension ids"""
|
|
73
80
|
|
|
74
|
-
proxy:
|
|
75
|
-
"""Proxy details for the browser session.
|
|
81
|
+
proxy: AdvancedProxy
|
|
82
|
+
"""Proxy details for the browser session.
|
|
83
|
+
|
|
84
|
+
Automatically defaults to True if solve_captchas is on.
|
|
85
|
+
"""
|
|
76
86
|
|
|
77
87
|
solve_captchas: Optional[bool]
|
|
78
88
|
"""Whether to attempt automatic CAPTCHA solving."""
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: raccoonai
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a15
|
|
4
4
|
Summary: The official Python library for the raccoonAI API
|
|
5
5
|
Project-URL: Homepage, https://github.com/raccoonaihq/raccoonai-python
|
|
6
6
|
Project-URL: Repository, https://github.com/raccoonaihq/raccoonai-python
|
|
7
|
-
Author-email: Raccoon AI <team@
|
|
8
|
-
License
|
|
9
|
-
License-File: LICENSE
|
|
7
|
+
Author-email: Raccoon AI <team@raccoonai.tech>
|
|
8
|
+
License: Apache-2.0
|
|
10
9
|
Classifier: Intended Audience :: Developers
|
|
11
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
11
|
Classifier: Operating System :: MacOS
|
|
@@ -42,7 +41,7 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
42
41
|
|
|
43
42
|
## Documentation
|
|
44
43
|
|
|
45
|
-
The REST API documentation can be found on [docs.
|
|
44
|
+
The REST API documentation can be found on [docs.raccoonai.tech](https://docs.raccoonai.tech). The full API of this library can be found in [api.md](https://github.com/raccoonaihq/raccoonai-python/tree/main/api.md).
|
|
46
45
|
|
|
47
46
|
## Installation
|
|
48
47
|
|
|
@@ -167,7 +166,6 @@ response = client.lam.run(
|
|
|
167
166
|
"proxy": {
|
|
168
167
|
"city": "sanfrancisco",
|
|
169
168
|
"country": "us",
|
|
170
|
-
"enable": True,
|
|
171
169
|
"state": "ca",
|
|
172
170
|
"zip": 94102,
|
|
173
171
|
},
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
raccoonai/__init__.py,sha256=ut5jCAExi9IzT9pzrjpsJoVhn6bzWI6jIXNXB-fXBY4,2523
|
|
2
2
|
raccoonai/_base_client.py,sha256=JVsNh33YxdFcdvPaIoCuOZGE_lx_3U7_OtuaO9doXec,64960
|
|
3
|
-
raccoonai/_client.py,sha256
|
|
3
|
+
raccoonai/_client.py,sha256=-QSzuORMlEWUeMf2Jc20frkx0KncFT66C-aQ5qXGFFw,18899
|
|
4
4
|
raccoonai/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
|
5
5
|
raccoonai/_constants.py,sha256=FkmVVcfVS3gR69v_fTrqA_qjakyxJHOWJcw3jpEck8Y,465
|
|
6
6
|
raccoonai/_exceptions.py,sha256=Y-DcD2M8xkSw8IEkk4KHj73O8GQxCtWm4HWYQ02j7z8,3226
|
|
7
7
|
raccoonai/_files.py,sha256=a0SHeBu6FT5rt_CKotWZyna5GpgB42go35AUK5sEiD4,3624
|
|
8
|
-
raccoonai/_models.py,sha256=
|
|
8
|
+
raccoonai/_models.py,sha256=Bg-k8-T1kDWURAYXrbDF5FSAyLEy7k90Jrvne-dF4Wc,29070
|
|
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=
|
|
14
|
+
raccoonai/_version.py,sha256=ZBQ_W1RxnEErRt9CzfNc2sEZu-88-UkqsJYC5ibv3EQ,170
|
|
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,7 +19,7 @@ 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=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
22
|
-
raccoonai/_utils/_transform.py,sha256=
|
|
22
|
+
raccoonai/_utils/_transform.py,sha256=asrbdx4Pf5NupzaB8QdEjypW_DgHjjkpswHT0Jum4S0,13987
|
|
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
|
|
@@ -27,33 +27,33 @@ raccoonai/resources/__init__.py,sha256=J3rNFGIi-0n5C4uqUHDax-dZCtNhFxnz1_LiF1Hm4
|
|
|
27
27
|
raccoonai/resources/fleet/__init__.py,sha256=vGB3Zi0TL72b8i88mnBm-evtTa2DMGqZAQhdfMis6tQ,1517
|
|
28
28
|
raccoonai/resources/fleet/extensions.py,sha256=lFILcLXF-9MtJfwvIN4o7LxcRCJfwR5exQuJZGHXx6Q,15318
|
|
29
29
|
raccoonai/resources/fleet/fleet.py,sha256=q8Ola3g7CQOMO0XQ9CDsQ0iG3n7FEnUe_4VJLGGlGfw,4818
|
|
30
|
-
raccoonai/resources/fleet/sessions.py,sha256=
|
|
30
|
+
raccoonai/resources/fleet/sessions.py,sha256=0sRBZIyRzpaEpR8P8pnylTw5QDp2dJrrGLVZlkkwuPs,28540
|
|
31
31
|
raccoonai/resources/lam/__init__.py,sha256=Thj6eBm5r07sqkqyE9K1JGjNKyzgaodJLy-qNrfrCWc,950
|
|
32
32
|
raccoonai/resources/lam/lam.py,sha256=dkimES5beXY5eRXjrg62eAJxXw6kEIPoSweSBkRmAmU,22327
|
|
33
|
-
raccoonai/resources/lam/tasks.py,sha256=
|
|
33
|
+
raccoonai/resources/lam/tasks.py,sha256=e9YbmtwNx9tkVTP-F6RfL1uCDr95RymGIziC7vzn2dE,12542
|
|
34
34
|
raccoonai/resources/tail/__init__.py,sha256=1iOxKP4PRjPGjU1ss2L_8YbwPZ_MIA5cnyFbyELeRoA,1387
|
|
35
35
|
raccoonai/resources/tail/apps.py,sha256=532sI0g2sLUrLV3z_8qfbW8qnTTc8HyyQax1PD52BrA,8008
|
|
36
36
|
raccoonai/resources/tail/tail.py,sha256=L3HtDA-G4GSGdD5YjWp5IcjuYGINRFdua0-YKHrAavA,4517
|
|
37
37
|
raccoonai/resources/tail/users.py,sha256=Y-_NjYurHFM7fTJjPeZ2yyL0n3VO_a1CZP1SM6u_9FU,14503
|
|
38
38
|
raccoonai/types/__init__.py,sha256=zPr9s--p1dwMuN9TZf38xnrr_T0G8FA2LLIPUazW4FA,243
|
|
39
|
-
raccoonai/types/lam_run_params.py,sha256=
|
|
39
|
+
raccoonai/types/lam_run_params.py,sha256=WEz4-fSyhk72lke57m68n0ATFeiHwpOsaWvnguoz6yM,2733
|
|
40
40
|
raccoonai/types/lam_run_response.py,sha256=pOBB0xmGZou7vMG-dmhUk6v5pMyJF4dXWnNWXAHvfW0,891
|
|
41
41
|
raccoonai/types/fleet/__init__.py,sha256=4z1oeJkLJ-abdHCDxQ0lO9zOkpJXtSaR5qgVeVsaHLE,1101
|
|
42
42
|
raccoonai/types/fleet/extension_all_response.py,sha256=J9Y5qq3Eukik_0Bmyq75kLEhJJohJOF_Hx8vWUv_Sq8,527
|
|
43
43
|
raccoonai/types/fleet/extension_get_response.py,sha256=Z0JcFPJhu22Hw0w-qRh1cGRqMlIaIMu1JM1_Z6eUPbE,398
|
|
44
44
|
raccoonai/types/fleet/extension_upload_params.py,sha256=UUR2H0DrvNgpLJfCTyO28Gv5xI8EEOEFErwmj3Ru5z0,328
|
|
45
45
|
raccoonai/types/fleet/extension_upload_response.py,sha256=0ZETPTZa9h7T--ShFskafm_1bDuik_8xt1Z29BuSN-s,404
|
|
46
|
-
raccoonai/types/fleet/session_all_params.py,sha256=
|
|
47
|
-
raccoonai/types/fleet/session_all_response.py,sha256=
|
|
48
|
-
raccoonai/types/fleet/session_create_params.py,sha256=
|
|
49
|
-
raccoonai/types/fleet/session_create_response.py,sha256=
|
|
46
|
+
raccoonai/types/fleet/session_all_params.py,sha256=8PmXYnnvdc52Hw4q4d0bzWMeeq_7m5LraRghHwI_wl0,1432
|
|
47
|
+
raccoonai/types/fleet/session_all_response.py,sha256=Z4_iJCGAtfFpYZTiBmYAZJaPzyVUfS1Qkwe5nEeuPcY,1721
|
|
48
|
+
raccoonai/types/fleet/session_create_params.py,sha256=1DK11wJV9XqXRRIHPuHMpusxQeg3ueM1a5NcAaQOoZA,2567
|
|
49
|
+
raccoonai/types/fleet/session_create_response.py,sha256=WbVwyfesj9QWuYEhDPoNji7U5eJmEOA44NmImWCl4qk,602
|
|
50
50
|
raccoonai/types/fleet/session_logs_response.py,sha256=rHcBPnymndXeBYADOumMsdR6pKe_z0Cpt-x-dIUcjew,365
|
|
51
51
|
raccoonai/types/fleet/session_media_response.py,sha256=FsE4vgxweb0y25J5YYa_fHbVy8IaQfstEZ90QIxVx3c,1118
|
|
52
52
|
raccoonai/types/fleet/session_status_response.py,sha256=bmmZk4f6aV3lS3ENILoLQm38dKVkVY4uN-H-OTUrxgM,432
|
|
53
53
|
raccoonai/types/fleet/session_terminate_response.py,sha256=UbA_9CwZOmRMcxqaNMIFNGA8pwpAY1fagb_2voYBQ0c,438
|
|
54
54
|
raccoonai/types/lam/__init__.py,sha256=dak9LY4a3LXk_EWubxjYE51G4mbZI1FNo-o1xHdR8fU,321
|
|
55
|
-
raccoonai/types/lam/task_all_params.py,sha256=
|
|
56
|
-
raccoonai/types/lam/task_all_response.py,sha256=
|
|
55
|
+
raccoonai/types/lam/task_all_params.py,sha256=gGWnYd4IK1BoQS69eHqE9CSShoio9bNISrmZ_XcSArQ,1322
|
|
56
|
+
raccoonai/types/lam/task_all_response.py,sha256=p0S2Dq0T2NSHc4O3wuk1HQJr9Xopey0Hy7kI4VVPDpE,1483
|
|
57
57
|
raccoonai/types/lam/task_media_response.py,sha256=SWU3csSTgaLOqI_vAqDqXpJUoKGHjBOCobAzRxeal1A,1356
|
|
58
58
|
raccoonai/types/tail/__init__.py,sha256=ArwoGhkvRtzQrVPzwullb4kSzH_IU5HProi1UHiGOrI,738
|
|
59
59
|
raccoonai/types/tail/app_all_response.py,sha256=BJ3eYZZYKcrwRvJwt3DNuTBpADvoUmUG7g9rLofRpYw,1158
|
|
@@ -65,7 +65,7 @@ raccoonai/types/tail/user_create_params.py,sha256=4Pe2d2L_TqNAeBNtG92ml1zLA3wTt_
|
|
|
65
65
|
raccoonai/types/tail/user_create_response.py,sha256=wGZuNVLZpm8ph60zD1aJHP1kPs9CCn2O7ZsyqEHRGgM,518
|
|
66
66
|
raccoonai/types/tail/user_status_params.py,sha256=gxSN0_zGeqOSKpDaoKh0O6l8j0jMyxP7f7ONIPWOVZE,459
|
|
67
67
|
raccoonai/types/tail/user_status_response.py,sha256=BakDkr-yhueamBAx-wrHCUZ4h9rYJCQPnDD49paA_aU,472
|
|
68
|
-
raccoonai-0.1.
|
|
69
|
-
raccoonai-0.1.
|
|
70
|
-
raccoonai-0.1.
|
|
71
|
-
raccoonai-0.1.
|
|
68
|
+
raccoonai-0.1.0a15.dist-info/METADATA,sha256=z70y7deKv-3ubKvTs5seTHf8dTjQo0KVIRXnKAUTo2w,15525
|
|
69
|
+
raccoonai-0.1.0a15.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
70
|
+
raccoonai-0.1.0a15.dist-info/licenses/LICENSE,sha256=enGvZ2fGU7wGgMPWkgyWhnsFhCpxwdeG_selO_ovoTM,11340
|
|
71
|
+
raccoonai-0.1.0a15.dist-info/RECORD,,
|
|
File without changes
|