athena-intelligence 0.1.220__py3-none-any.whl → 0.1.222__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 athena-intelligence might be problematic. Click here for more details.
- athena/__init__.py +0 -2
- athena/aop/raw_client.py +8 -9
- athena/core/client_wrapper.py +2 -2
- athena/errors/not_found_error.py +1 -2
- athena/threads/raw_client.py +4 -5
- athena/tools/raw_client.py +24 -25
- athena/types/__init__.py +0 -2
- {athena_intelligence-0.1.220.dist-info → athena_intelligence-0.1.222.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.220.dist-info → athena_intelligence-0.1.222.dist-info}/RECORD +10 -11
- athena/types/asset_not_found_error.py +0 -19
- {athena_intelligence-0.1.220.dist-info → athena_intelligence-0.1.222.dist-info}/WHEEL +0 -0
athena/__init__.py
CHANGED
|
@@ -8,7 +8,6 @@ from .types import (
|
|
|
8
8
|
AopExecuteResponseOut,
|
|
9
9
|
AssetContentRequestOut,
|
|
10
10
|
AssetNode,
|
|
11
|
-
AssetNotFoundError,
|
|
12
11
|
AssetScreenshotResponseOut,
|
|
13
12
|
Chunk,
|
|
14
13
|
ChunkContentItem,
|
|
@@ -79,7 +78,6 @@ __all__ = [
|
|
|
79
78
|
"AopExecuteResponseOut",
|
|
80
79
|
"AssetContentRequestOut",
|
|
81
80
|
"AssetNode",
|
|
82
|
-
"AssetNotFoundError",
|
|
83
81
|
"AssetScreenshotResponseOut",
|
|
84
82
|
"AsyncAthena",
|
|
85
83
|
"Athena",
|
athena/aop/raw_client.py
CHANGED
|
@@ -17,7 +17,6 @@ from ..errors.unprocessable_entity_error import UnprocessableEntityError
|
|
|
17
17
|
from ..types.aop_async_execute_response_out import AopAsyncExecuteResponseOut
|
|
18
18
|
from ..types.aop_execute_request_in import AopExecuteRequestIn
|
|
19
19
|
from ..types.aop_execute_response_out import AopExecuteResponseOut
|
|
20
|
-
from ..types.asset_not_found_error import AssetNotFoundError
|
|
21
20
|
|
|
22
21
|
# this is used as the default value for optional parameters
|
|
23
22
|
OMIT = typing.cast(typing.Any, ...)
|
|
@@ -93,9 +92,9 @@ class RawAopClient:
|
|
|
93
92
|
raise NotFoundError(
|
|
94
93
|
headers=dict(_response.headers),
|
|
95
94
|
body=typing.cast(
|
|
96
|
-
|
|
95
|
+
typing.Optional[typing.Any],
|
|
97
96
|
parse_obj_as(
|
|
98
|
-
type_=
|
|
97
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
99
98
|
object_=_response.json(),
|
|
100
99
|
),
|
|
101
100
|
),
|
|
@@ -193,9 +192,9 @@ class RawAopClient:
|
|
|
193
192
|
raise NotFoundError(
|
|
194
193
|
headers=dict(_response.headers),
|
|
195
194
|
body=typing.cast(
|
|
196
|
-
|
|
195
|
+
typing.Optional[typing.Any],
|
|
197
196
|
parse_obj_as(
|
|
198
|
-
type_=
|
|
197
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
199
198
|
object_=_response.json(),
|
|
200
199
|
),
|
|
201
200
|
),
|
|
@@ -298,9 +297,9 @@ class AsyncRawAopClient:
|
|
|
298
297
|
raise NotFoundError(
|
|
299
298
|
headers=dict(_response.headers),
|
|
300
299
|
body=typing.cast(
|
|
301
|
-
|
|
300
|
+
typing.Optional[typing.Any],
|
|
302
301
|
parse_obj_as(
|
|
303
|
-
type_=
|
|
302
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
304
303
|
object_=_response.json(),
|
|
305
304
|
),
|
|
306
305
|
),
|
|
@@ -398,9 +397,9 @@ class AsyncRawAopClient:
|
|
|
398
397
|
raise NotFoundError(
|
|
399
398
|
headers=dict(_response.headers),
|
|
400
399
|
body=typing.cast(
|
|
401
|
-
|
|
400
|
+
typing.Optional[typing.Any],
|
|
402
401
|
parse_obj_as(
|
|
403
|
-
type_=
|
|
402
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
404
403
|
object_=_response.json(),
|
|
405
404
|
),
|
|
406
405
|
),
|
athena/core/client_wrapper.py
CHANGED
|
@@ -22,10 +22,10 @@ class BaseClientWrapper:
|
|
|
22
22
|
|
|
23
23
|
def get_headers(self) -> typing.Dict[str, str]:
|
|
24
24
|
headers: typing.Dict[str, str] = {
|
|
25
|
-
"User-Agent": "athena-intelligence/0.1.
|
|
25
|
+
"User-Agent": "athena-intelligence/0.1.222",
|
|
26
26
|
"X-Fern-Language": "Python",
|
|
27
27
|
"X-Fern-SDK-Name": "athena-intelligence",
|
|
28
|
-
"X-Fern-SDK-Version": "0.1.
|
|
28
|
+
"X-Fern-SDK-Version": "0.1.222",
|
|
29
29
|
**(self.get_custom_headers() or {}),
|
|
30
30
|
}
|
|
31
31
|
headers["X-API-KEY"] = self.api_key
|
athena/errors/not_found_error.py
CHANGED
|
@@ -3,9 +3,8 @@
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
5
|
from ..core.api_error import ApiError
|
|
6
|
-
from ..types.asset_not_found_error import AssetNotFoundError
|
|
7
6
|
|
|
8
7
|
|
|
9
8
|
class NotFoundError(ApiError):
|
|
10
|
-
def __init__(self, body:
|
|
9
|
+
def __init__(self, body: typing.Optional[typing.Any], headers: typing.Optional[typing.Dict[str, str]] = None):
|
|
11
10
|
super().__init__(status_code=404, headers=headers, body=body)
|
athena/threads/raw_client.py
CHANGED
|
@@ -13,7 +13,6 @@ from ..errors.internal_server_error import InternalServerError
|
|
|
13
13
|
from ..errors.not_found_error import NotFoundError
|
|
14
14
|
from ..errors.unauthorized_error import UnauthorizedError
|
|
15
15
|
from ..errors.unprocessable_entity_error import UnprocessableEntityError
|
|
16
|
-
from ..types.asset_not_found_error import AssetNotFoundError
|
|
17
16
|
from ..types.thread_status_response_out import ThreadStatusResponseOut
|
|
18
17
|
|
|
19
18
|
|
|
@@ -70,9 +69,9 @@ class RawThreadsClient:
|
|
|
70
69
|
raise NotFoundError(
|
|
71
70
|
headers=dict(_response.headers),
|
|
72
71
|
body=typing.cast(
|
|
73
|
-
|
|
72
|
+
typing.Optional[typing.Any],
|
|
74
73
|
parse_obj_as(
|
|
75
|
-
type_=
|
|
74
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
76
75
|
object_=_response.json(),
|
|
77
76
|
),
|
|
78
77
|
),
|
|
@@ -158,9 +157,9 @@ class AsyncRawThreadsClient:
|
|
|
158
157
|
raise NotFoundError(
|
|
159
158
|
headers=dict(_response.headers),
|
|
160
159
|
body=typing.cast(
|
|
161
|
-
|
|
160
|
+
typing.Optional[typing.Any],
|
|
162
161
|
parse_obj_as(
|
|
163
|
-
type_=
|
|
162
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
164
163
|
object_=_response.json(),
|
|
165
164
|
),
|
|
166
165
|
),
|
athena/tools/raw_client.py
CHANGED
|
@@ -18,7 +18,6 @@ from ..errors.unauthorized_error import UnauthorizedError
|
|
|
18
18
|
from ..errors.unprocessable_entity_error import UnprocessableEntityError
|
|
19
19
|
from ..errors.unsupported_media_type_error import UnsupportedMediaTypeError
|
|
20
20
|
from ..types.asset_content_request_out import AssetContentRequestOut
|
|
21
|
-
from ..types.asset_not_found_error import AssetNotFoundError
|
|
22
21
|
from ..types.asset_screenshot_response_out import AssetScreenshotResponseOut
|
|
23
22
|
from ..types.data_frame_request_out import DataFrameRequestOut
|
|
24
23
|
from ..types.data_frame_unknown_format_error import DataFrameUnknownFormatError
|
|
@@ -92,9 +91,9 @@ class RawToolsClient:
|
|
|
92
91
|
raise NotFoundError(
|
|
93
92
|
headers=dict(_response.headers),
|
|
94
93
|
body=typing.cast(
|
|
95
|
-
|
|
94
|
+
typing.Optional[typing.Any],
|
|
96
95
|
parse_obj_as(
|
|
97
|
-
type_=
|
|
96
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
98
97
|
object_=_response.json(),
|
|
99
98
|
),
|
|
100
99
|
),
|
|
@@ -166,9 +165,9 @@ class RawToolsClient:
|
|
|
166
165
|
raise NotFoundError(
|
|
167
166
|
headers=dict(_response.headers),
|
|
168
167
|
body=typing.cast(
|
|
169
|
-
|
|
168
|
+
typing.Optional[typing.Any],
|
|
170
169
|
parse_obj_as(
|
|
171
|
-
type_=
|
|
170
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
172
171
|
object_=_response.json(),
|
|
173
172
|
),
|
|
174
173
|
),
|
|
@@ -247,9 +246,9 @@ class RawToolsClient:
|
|
|
247
246
|
raise NotFoundError(
|
|
248
247
|
headers=dict(_response.headers),
|
|
249
248
|
body=typing.cast(
|
|
250
|
-
|
|
249
|
+
typing.Optional[typing.Any],
|
|
251
250
|
parse_obj_as(
|
|
252
|
-
type_=
|
|
251
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
253
252
|
object_=_response.json(),
|
|
254
253
|
),
|
|
255
254
|
),
|
|
@@ -358,9 +357,9 @@ class RawToolsClient:
|
|
|
358
357
|
raise NotFoundError(
|
|
359
358
|
headers=dict(_response.headers),
|
|
360
359
|
body=typing.cast(
|
|
361
|
-
|
|
360
|
+
typing.Optional[typing.Any],
|
|
362
361
|
parse_obj_as(
|
|
363
|
-
type_=
|
|
362
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
364
363
|
object_=_response.json(),
|
|
365
364
|
),
|
|
366
365
|
),
|
|
@@ -458,9 +457,9 @@ class RawToolsClient:
|
|
|
458
457
|
raise NotFoundError(
|
|
459
458
|
headers=dict(_response.headers),
|
|
460
459
|
body=typing.cast(
|
|
461
|
-
|
|
460
|
+
typing.Optional[typing.Any],
|
|
462
461
|
parse_obj_as(
|
|
463
|
-
type_=
|
|
462
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
464
463
|
object_=_response.json(),
|
|
465
464
|
),
|
|
466
465
|
),
|
|
@@ -554,9 +553,9 @@ class RawToolsClient:
|
|
|
554
553
|
raise NotFoundError(
|
|
555
554
|
headers=dict(_response.headers),
|
|
556
555
|
body=typing.cast(
|
|
557
|
-
|
|
556
|
+
typing.Optional[typing.Any],
|
|
558
557
|
parse_obj_as(
|
|
559
|
-
type_=
|
|
558
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
560
559
|
object_=_response.json(),
|
|
561
560
|
),
|
|
562
561
|
),
|
|
@@ -739,9 +738,9 @@ class AsyncRawToolsClient:
|
|
|
739
738
|
raise NotFoundError(
|
|
740
739
|
headers=dict(_response.headers),
|
|
741
740
|
body=typing.cast(
|
|
742
|
-
|
|
741
|
+
typing.Optional[typing.Any],
|
|
743
742
|
parse_obj_as(
|
|
744
|
-
type_=
|
|
743
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
745
744
|
object_=_response.json(),
|
|
746
745
|
),
|
|
747
746
|
),
|
|
@@ -813,9 +812,9 @@ class AsyncRawToolsClient:
|
|
|
813
812
|
raise NotFoundError(
|
|
814
813
|
headers=dict(_response.headers),
|
|
815
814
|
body=typing.cast(
|
|
816
|
-
|
|
815
|
+
typing.Optional[typing.Any],
|
|
817
816
|
parse_obj_as(
|
|
818
|
-
type_=
|
|
817
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
819
818
|
object_=_response.json(),
|
|
820
819
|
),
|
|
821
820
|
),
|
|
@@ -894,9 +893,9 @@ class AsyncRawToolsClient:
|
|
|
894
893
|
raise NotFoundError(
|
|
895
894
|
headers=dict(_response.headers),
|
|
896
895
|
body=typing.cast(
|
|
897
|
-
|
|
896
|
+
typing.Optional[typing.Any],
|
|
898
897
|
parse_obj_as(
|
|
899
|
-
type_=
|
|
898
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
900
899
|
object_=_response.json(),
|
|
901
900
|
),
|
|
902
901
|
),
|
|
@@ -1005,9 +1004,9 @@ class AsyncRawToolsClient:
|
|
|
1005
1004
|
raise NotFoundError(
|
|
1006
1005
|
headers=dict(_response.headers),
|
|
1007
1006
|
body=typing.cast(
|
|
1008
|
-
|
|
1007
|
+
typing.Optional[typing.Any],
|
|
1009
1008
|
parse_obj_as(
|
|
1010
|
-
type_=
|
|
1009
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
1011
1010
|
object_=_response.json(),
|
|
1012
1011
|
),
|
|
1013
1012
|
),
|
|
@@ -1105,9 +1104,9 @@ class AsyncRawToolsClient:
|
|
|
1105
1104
|
raise NotFoundError(
|
|
1106
1105
|
headers=dict(_response.headers),
|
|
1107
1106
|
body=typing.cast(
|
|
1108
|
-
|
|
1107
|
+
typing.Optional[typing.Any],
|
|
1109
1108
|
parse_obj_as(
|
|
1110
|
-
type_=
|
|
1109
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
1111
1110
|
object_=_response.json(),
|
|
1112
1111
|
),
|
|
1113
1112
|
),
|
|
@@ -1202,9 +1201,9 @@ class AsyncRawToolsClient:
|
|
|
1202
1201
|
raise NotFoundError(
|
|
1203
1202
|
headers=dict(_response.headers),
|
|
1204
1203
|
body=typing.cast(
|
|
1205
|
-
|
|
1204
|
+
typing.Optional[typing.Any],
|
|
1206
1205
|
parse_obj_as(
|
|
1207
|
-
type_=
|
|
1206
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
1208
1207
|
object_=_response.json(),
|
|
1209
1208
|
),
|
|
1210
1209
|
),
|
athena/types/__init__.py
CHANGED
|
@@ -7,7 +7,6 @@ from .aop_execute_request_in import AopExecuteRequestIn
|
|
|
7
7
|
from .aop_execute_response_out import AopExecuteResponseOut
|
|
8
8
|
from .asset_content_request_out import AssetContentRequestOut
|
|
9
9
|
from .asset_node import AssetNode
|
|
10
|
-
from .asset_not_found_error import AssetNotFoundError
|
|
11
10
|
from .asset_screenshot_response_out import AssetScreenshotResponseOut
|
|
12
11
|
from .chunk import Chunk
|
|
13
12
|
from .chunk_content_item import ChunkContentItem, ChunkContentItem_ImageUrl, ChunkContentItem_Text
|
|
@@ -62,7 +61,6 @@ __all__ = [
|
|
|
62
61
|
"AopExecuteResponseOut",
|
|
63
62
|
"AssetContentRequestOut",
|
|
64
63
|
"AssetNode",
|
|
65
|
-
"AssetNotFoundError",
|
|
66
64
|
"AssetScreenshotResponseOut",
|
|
67
65
|
"Chunk",
|
|
68
66
|
"ChunkContentItem",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
athena/__init__.py,sha256=
|
|
1
|
+
athena/__init__.py,sha256=m4d9K_0cNfspmKY-t6QI6Iy35Wg_kfrw7SWmiIsQ-hs,3789
|
|
2
2
|
athena/agents/__init__.py,sha256=dg7IOwE6-BQSx20JEhdc1VDHlbIHPy08x5fuww_Tvko,180
|
|
3
3
|
athena/agents/client.py,sha256=A70jdG6spqLkPriU8-NCn0vOJvdc5f4SKoVZLOebZjQ,5975
|
|
4
4
|
athena/agents/drive/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -16,7 +16,7 @@ athena/agents/sql/client.py,sha256=Ht7PMJSMqVwihdqk74yyqwFUSXOPcLjxNB-YU6cVGAE,4
|
|
|
16
16
|
athena/agents/sql/raw_client.py,sha256=sI7Aq6_Z4AdgXzqBXG2G4l2fYQTWjQ-5IeNZdClmXhY,6017
|
|
17
17
|
athena/aop/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
18
18
|
athena/aop/client.py,sha256=xdmDUTR_XAKLX3Oo2lRrnpuh34zZtU18yBI0KTsOSGY,6506
|
|
19
|
-
athena/aop/raw_client.py,sha256=
|
|
19
|
+
athena/aop/raw_client.py,sha256=NX_nbVe8sIUvN_jzmq4dDIvr1NQqk0gmi_eeI7Ep8gY,18257
|
|
20
20
|
athena/assets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
21
21
|
athena/assets/client.py,sha256=8qxDICl5Dz-cNeUOl0du1spj54g_-bLObSLK_biUXV0,5159
|
|
22
22
|
athena/assets/raw_client.py,sha256=TW6dCb1i68p-0sf4_B2F0H8SK-kk9sIHFAuwfTEg5GQ,7077
|
|
@@ -24,7 +24,7 @@ athena/base_client.py,sha256=9OfmXHlNIFE_4Udzxn0Ue-H-sC2ps0AIm8ZRyuaDwXA,6738
|
|
|
24
24
|
athena/client.py,sha256=lK3vVU3TF3YjPpiohpxcuRl8x_sSw8HmQ-uuDDeAT6I,22161
|
|
25
25
|
athena/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
|
26
26
|
athena/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
27
|
-
athena/core/client_wrapper.py,sha256=
|
|
27
|
+
athena/core/client_wrapper.py,sha256=N2NVfXbGervhcx9Aq_03kWgwWO2ZZUdw-LZbZtHh-qk,2392
|
|
28
28
|
athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
29
29
|
athena/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
30
30
|
athena/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -41,7 +41,7 @@ athena/errors/__init__.py,sha256=ouNi-VrkRD37haxSAk1-3mbexWE2qCMtctdE5CEgXvM,675
|
|
|
41
41
|
athena/errors/bad_request_error.py,sha256=PnE3v3kETCXm9E3LiNcHLNtjPEUvpe98-r59q-kQb78,338
|
|
42
42
|
athena/errors/content_too_large_error.py,sha256=i4Af_rueEaP5CftotSDwCaMRlkcC76KyT2NsEIjZH0I,392
|
|
43
43
|
athena/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
|
|
44
|
-
athena/errors/not_found_error.py,sha256=
|
|
44
|
+
athena/errors/not_found_error.py,sha256=YrqVM0oc3qkQbFbmmm6xr300VGfUNxMSy1UQUp2IOE8,336
|
|
45
45
|
athena/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg63dQSA,340
|
|
46
46
|
athena/errors/unprocessable_entity_error.py,sha256=JqxtzIhvjkpQDqbT9Q-go1n-gyv9PsYqq0ng_ZYyBMo,347
|
|
47
47
|
athena/errors/unsupported_media_type_error.py,sha256=qEyfvc5AZEDI-Kl6MC_punVPnKZMXTqD74ZaXxom_ko,428
|
|
@@ -53,7 +53,7 @@ athena/query/types/__init__.py,sha256=O7bsrzp7vi-HiEiDq7X6dGcElLkCbWtyQ4wqP6Qdyp
|
|
|
53
53
|
athena/query/types/query_execute_request_database_asset_ids.py,sha256=aoVl5Xb34Q27hYGuVTnByGIxtHkL67wAwzXh7eJctew,154
|
|
54
54
|
athena/threads/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
55
55
|
athena/threads/client.py,sha256=gLjlEgLuEMduyPlK54GhGxWu6Vto-_TKFHcYcu9ZoiY,3328
|
|
56
|
-
athena/threads/raw_client.py,sha256=
|
|
56
|
+
athena/threads/raw_client.py,sha256=7RhzQb32UrZMEDF5LFutYSUFXvbR7OYPXdyVSSCXoOQ,8047
|
|
57
57
|
athena/tools/__init__.py,sha256=TxIs_v3YkPfqPV95RUx-qVpZ55mQrD5qbxGoV0I_P1g,456
|
|
58
58
|
athena/tools/calendar/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
59
59
|
athena/tools/calendar/client.py,sha256=NMiwSaBD-JYcAoudGyBMtWVIWPm6ChFqOFSndxYupY0,4385
|
|
@@ -62,7 +62,7 @@ athena/tools/client.py,sha256=MoSKdWoj5GP1Ars8vRZOq2XTSxZjgKBnXIoBGKa7x_g,19298
|
|
|
62
62
|
athena/tools/email/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
63
63
|
athena/tools/email/client.py,sha256=dOidOOOLHdfz2c3nykzyOa7nTftS91d2_aws0LTg8DU,5921
|
|
64
64
|
athena/tools/email/raw_client.py,sha256=GkSxb-RFdhGgFNghnwH6i0cPI_gfWGLUmWvBNlBlhE4,9962
|
|
65
|
-
athena/tools/raw_client.py,sha256=
|
|
65
|
+
athena/tools/raw_client.py,sha256=xdM0CsiywlAgolqC6Y-7WNXCRnx6aMBqSLAwZcS3OTc,53204
|
|
66
66
|
athena/tools/sheets/__init__.py,sha256=vxLg5xXUBSXe3GY09QR-m_5T-Poi9r_9of8Q4sFrSgI,195
|
|
67
67
|
athena/tools/sheets/client.py,sha256=gUs2sykjdhm4__c8dde0Qd5mfkU5ntIOXDciT1S6AWQ,59223
|
|
68
68
|
athena/tools/sheets/raw_client.py,sha256=4XNwDwMZtoUzbBIZhBTi1odPpqRtzCvIvzmdFUTCZdM,96723
|
|
@@ -76,13 +76,12 @@ athena/tools/tasks/client.py,sha256=c_YZ7OjQNJmPKbeeXJznXj3zo5CRFSv02dLupAdHAyo,
|
|
|
76
76
|
athena/tools/tasks/raw_client.py,sha256=Mexzuf_HcRXWNlESDGQkHHv5tC2tAo-AX3PBSuSRO3U,3812
|
|
77
77
|
athena/tools/types/__init__.py,sha256=ZI6REilQ0Xuocjd8iyNVfLvOsA2Ltlb8--px07wRSPg,217
|
|
78
78
|
athena/tools/types/tools_data_frame_request_columns_item.py,sha256=GA1FUlTV_CfSc-KToTAwFf4Exl0rr4fsweVZupztjw0,138
|
|
79
|
-
athena/types/__init__.py,sha256=
|
|
79
|
+
athena/types/__init__.py,sha256=phDCY6o04mrhCG4P_MjxohSPUM5K8skioaxusKXcApg,4313
|
|
80
80
|
athena/types/aop_async_execute_response_out.py,sha256=R3oy0RLyD-t4MQCnp3Ll13Ci3D5JUMhPyuetbhrONNs,1798
|
|
81
81
|
athena/types/aop_execute_request_in.py,sha256=mEsMKyNN6e90gZra733lJDC6z0bZWdc72af3B-Z5aqE,889
|
|
82
82
|
athena/types/aop_execute_response_out.py,sha256=ZRsVi8Ho0l2nBKUyE1uP-4F14FMuuLeap1SZGeVk8NI,1856
|
|
83
83
|
athena/types/asset_content_request_out.py,sha256=RYlcY6j6Ju5EQL7UquDwyTe7uqxyuO8Bg8LCsv1YiUE,652
|
|
84
84
|
athena/types/asset_node.py,sha256=3l7CUK2c_h4QT8ktSq0rFP9veF9G_V9mNe3NZlGl-xQ,804
|
|
85
|
-
athena/types/asset_not_found_error.py,sha256=lIQpdTXCgbXRs21XCMhd_kB7fR6Y6Ep112mK4rejNx0,528
|
|
86
85
|
athena/types/asset_screenshot_response_out.py,sha256=tiAt9xnpXWMRUnblWzUEJbXYzB412kdqKkb_02OFFGE,1069
|
|
87
86
|
athena/types/chunk.py,sha256=9hE8tQHBknGcdY7eEgOOwd27KHbMIZXV203jaoVgx2c,747
|
|
88
87
|
athena/types/chunk_content_item.py,sha256=nKP8lq4AbbAZEKY7bRKOc7sDvqfyslCBCn8Cl_Pdz0c,1128
|
|
@@ -127,6 +126,6 @@ athena/types/text_content.py,sha256=tcVCPj3tHh5zQcTElr2tdCIjjfx3ZI63rKIlaG8vo64,
|
|
|
127
126
|
athena/types/thread_status_response_out.py,sha256=UuSAvs9woL1i8RwvVRKsFUufN4A9jO3jsV47YMckvQU,1219
|
|
128
127
|
athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
|
|
129
128
|
athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
|
|
130
|
-
athena_intelligence-0.1.
|
|
131
|
-
athena_intelligence-0.1.
|
|
132
|
-
athena_intelligence-0.1.
|
|
129
|
+
athena_intelligence-0.1.222.dist-info/METADATA,sha256=n8xyIsOFX1zEC9IEXLjZhprJbh87oyBZ19Hn3j_llHg,5440
|
|
130
|
+
athena_intelligence-0.1.222.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
131
|
+
athena_intelligence-0.1.222.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
|
|
5
|
-
import pydantic
|
|
6
|
-
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class AssetNotFoundError(UniversalBaseModel):
|
|
10
|
-
message: str
|
|
11
|
-
|
|
12
|
-
if IS_PYDANTIC_V2:
|
|
13
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
14
|
-
else:
|
|
15
|
-
|
|
16
|
-
class Config:
|
|
17
|
-
frozen = True
|
|
18
|
-
smart_union = True
|
|
19
|
-
extra = pydantic.Extra.allow
|
|
File without changes
|