athena-intelligence 0.1.260__py3-none-any.whl → 0.1.375__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.
- athena/__init__.py +9 -15
- athena/assets/client.py +278 -0
- athena/assets/raw_client.py +416 -0
- athena/client.py +9 -13
- athena/core/client_wrapper.py +2 -2
- athena/environment.py +0 -2
- athena/tools/client.py +4 -15
- athena/tools/raw_client.py +12 -17
- athena/types/__init__.py +9 -15
- athena/types/border_model.py +8 -3
- athena/types/cell_format.py +15 -4
- athena/types/conversation_asset_info.py +5 -0
- athena/types/creatable_asset_type.py +5 -0
- athena/types/create_asset_response_out.py +46 -0
- athena/types/create_project_response_out.py +51 -0
- athena/types/dimension_properties.py +1 -1
- athena/types/sheet.py +13 -6
- athena/types/text_format_model.py +11 -2
- athena/types/thread_status_response_out.py +5 -0
- {athena_intelligence-0.1.260.dist-info → athena_intelligence-0.1.375.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.260.dist-info → athena_intelligence-0.1.375.dist-info}/RECORD +22 -24
- athena/types/backgroundcolor.py +0 -7
- athena/types/color.py +0 -7
- athena/types/document_chunk.py +0 -24
- athena/types/file_chunk_request_out.py +0 -24
- athena/types/tabcolor.py +0 -7
- {athena_intelligence-0.1.260.dist-info → athena_intelligence-0.1.375.dist-info}/WHEEL +0 -0
athena/tools/raw_client.py
CHANGED
|
@@ -21,7 +21,6 @@ from ..types.asset_content_request_out import AssetContentRequestOut
|
|
|
21
21
|
from ..types.asset_screenshot_response_out import AssetScreenshotResponseOut
|
|
22
22
|
from ..types.data_frame_request_out import DataFrameRequestOut
|
|
23
23
|
from ..types.data_frame_unknown_format_error import DataFrameUnknownFormatError
|
|
24
|
-
from ..types.file_chunk_request_out import FileChunkRequestOut
|
|
25
24
|
from ..types.file_too_large_error import FileTooLargeError
|
|
26
25
|
from ..types.folder_response import FolderResponse
|
|
27
26
|
from ..types.save_asset_request_out import SaveAssetRequestOut
|
|
@@ -37,7 +36,7 @@ class RawToolsClient:
|
|
|
37
36
|
|
|
38
37
|
def get_asset_chunks(
|
|
39
38
|
self, *, asset_ids: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None
|
|
40
|
-
) -> HttpResponse[
|
|
39
|
+
) -> HttpResponse[typing.Optional[typing.Any]]:
|
|
41
40
|
"""
|
|
42
41
|
Get the chunks of a file.
|
|
43
42
|
|
|
@@ -51,7 +50,7 @@ class RawToolsClient:
|
|
|
51
50
|
|
|
52
51
|
Returns
|
|
53
52
|
-------
|
|
54
|
-
HttpResponse[
|
|
53
|
+
HttpResponse[typing.Optional[typing.Any]]
|
|
55
54
|
Successful Response
|
|
56
55
|
"""
|
|
57
56
|
_response = self._client_wrapper.httpx_client.request(
|
|
@@ -67,11 +66,13 @@ class RawToolsClient:
|
|
|
67
66
|
omit=OMIT,
|
|
68
67
|
)
|
|
69
68
|
try:
|
|
69
|
+
if _response is None or not _response.text.strip():
|
|
70
|
+
return HttpResponse(response=_response, data=None)
|
|
70
71
|
if 200 <= _response.status_code < 300:
|
|
71
72
|
_data = typing.cast(
|
|
72
|
-
|
|
73
|
+
typing.Optional[typing.Any],
|
|
73
74
|
parse_obj_as(
|
|
74
|
-
type_=
|
|
75
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
75
76
|
object_=_response.json(),
|
|
76
77
|
),
|
|
77
78
|
)
|
|
@@ -284,7 +285,6 @@ class RawToolsClient:
|
|
|
284
285
|
self,
|
|
285
286
|
*,
|
|
286
287
|
asset_id: typing.Optional[str] = None,
|
|
287
|
-
folder_id: typing.Optional[str] = None,
|
|
288
288
|
include_asset_details: typing.Optional[bool] = None,
|
|
289
289
|
include_system_files: typing.Optional[bool] = None,
|
|
290
290
|
request_options: typing.Optional[RequestOptions] = None,
|
|
@@ -296,8 +296,6 @@ class RawToolsClient:
|
|
|
296
296
|
----------
|
|
297
297
|
asset_id : typing.Optional[str]
|
|
298
298
|
|
|
299
|
-
folder_id : typing.Optional[str]
|
|
300
|
-
|
|
301
299
|
include_asset_details : typing.Optional[bool]
|
|
302
300
|
|
|
303
301
|
include_system_files : typing.Optional[bool]
|
|
@@ -315,7 +313,6 @@ class RawToolsClient:
|
|
|
315
313
|
method="GET",
|
|
316
314
|
params={
|
|
317
315
|
"asset_id": asset_id,
|
|
318
|
-
"folder_id": folder_id,
|
|
319
316
|
"include_asset_details": include_asset_details,
|
|
320
317
|
"include_system_files": include_system_files,
|
|
321
318
|
},
|
|
@@ -684,7 +681,7 @@ class AsyncRawToolsClient:
|
|
|
684
681
|
|
|
685
682
|
async def get_asset_chunks(
|
|
686
683
|
self, *, asset_ids: typing.Sequence[str], request_options: typing.Optional[RequestOptions] = None
|
|
687
|
-
) -> AsyncHttpResponse[
|
|
684
|
+
) -> AsyncHttpResponse[typing.Optional[typing.Any]]:
|
|
688
685
|
"""
|
|
689
686
|
Get the chunks of a file.
|
|
690
687
|
|
|
@@ -698,7 +695,7 @@ class AsyncRawToolsClient:
|
|
|
698
695
|
|
|
699
696
|
Returns
|
|
700
697
|
-------
|
|
701
|
-
AsyncHttpResponse[
|
|
698
|
+
AsyncHttpResponse[typing.Optional[typing.Any]]
|
|
702
699
|
Successful Response
|
|
703
700
|
"""
|
|
704
701
|
_response = await self._client_wrapper.httpx_client.request(
|
|
@@ -714,11 +711,13 @@ class AsyncRawToolsClient:
|
|
|
714
711
|
omit=OMIT,
|
|
715
712
|
)
|
|
716
713
|
try:
|
|
714
|
+
if _response is None or not _response.text.strip():
|
|
715
|
+
return AsyncHttpResponse(response=_response, data=None)
|
|
717
716
|
if 200 <= _response.status_code < 300:
|
|
718
717
|
_data = typing.cast(
|
|
719
|
-
|
|
718
|
+
typing.Optional[typing.Any],
|
|
720
719
|
parse_obj_as(
|
|
721
|
-
type_=
|
|
720
|
+
type_=typing.Optional[typing.Any], # type: ignore
|
|
722
721
|
object_=_response.json(),
|
|
723
722
|
),
|
|
724
723
|
)
|
|
@@ -931,7 +930,6 @@ class AsyncRawToolsClient:
|
|
|
931
930
|
self,
|
|
932
931
|
*,
|
|
933
932
|
asset_id: typing.Optional[str] = None,
|
|
934
|
-
folder_id: typing.Optional[str] = None,
|
|
935
933
|
include_asset_details: typing.Optional[bool] = None,
|
|
936
934
|
include_system_files: typing.Optional[bool] = None,
|
|
937
935
|
request_options: typing.Optional[RequestOptions] = None,
|
|
@@ -943,8 +941,6 @@ class AsyncRawToolsClient:
|
|
|
943
941
|
----------
|
|
944
942
|
asset_id : typing.Optional[str]
|
|
945
943
|
|
|
946
|
-
folder_id : typing.Optional[str]
|
|
947
|
-
|
|
948
944
|
include_asset_details : typing.Optional[bool]
|
|
949
945
|
|
|
950
946
|
include_system_files : typing.Optional[bool]
|
|
@@ -962,7 +958,6 @@ class AsyncRawToolsClient:
|
|
|
962
958
|
method="GET",
|
|
963
959
|
params={
|
|
964
960
|
"asset_id": asset_id,
|
|
965
|
-
"folder_id": folder_id,
|
|
966
961
|
"include_asset_details": include_asset_details,
|
|
967
962
|
"include_system_files": include_system_files,
|
|
968
963
|
},
|
athena/types/__init__.py
CHANGED
|
@@ -12,7 +12,6 @@ if typing.TYPE_CHECKING:
|
|
|
12
12
|
from .asset_content_request_out import AssetContentRequestOut
|
|
13
13
|
from .asset_node import AssetNode
|
|
14
14
|
from .asset_screenshot_response_out import AssetScreenshotResponseOut
|
|
15
|
-
from .backgroundcolor import Backgroundcolor
|
|
16
15
|
from .border_model import BorderModel
|
|
17
16
|
from .border_style import BorderStyle
|
|
18
17
|
from .borders_model import BordersModel
|
|
@@ -23,12 +22,14 @@ if typing.TYPE_CHECKING:
|
|
|
23
22
|
from .chunk_content_item import ChunkContentItem, ChunkContentItem_ImageUrl, ChunkContentItem_Text
|
|
24
23
|
from .chunk_result import ChunkResult
|
|
25
24
|
from .chunk_result_chunk_id import ChunkResultChunkId
|
|
26
|
-
from .color import Color
|
|
27
25
|
from .content import Content
|
|
28
26
|
from .conversation_asset_info import ConversationAssetInfo
|
|
29
27
|
from .conversation_message import ConversationMessage
|
|
30
28
|
from .conversation_result import ConversationResult
|
|
29
|
+
from .creatable_asset_type import CreatableAssetType
|
|
30
|
+
from .create_asset_response_out import CreateAssetResponseOut
|
|
31
31
|
from .create_new_sheet_tab_response import CreateNewSheetTabResponse
|
|
32
|
+
from .create_project_response_out import CreateProjectResponseOut
|
|
32
33
|
from .custom_agent_response import CustomAgentResponse
|
|
33
34
|
from .data_frame_request_out import DataFrameRequestOut
|
|
34
35
|
from .data_frame_request_out_columns_item import DataFrameRequestOutColumnsItem
|
|
@@ -36,9 +37,7 @@ if typing.TYPE_CHECKING:
|
|
|
36
37
|
from .data_frame_request_out_index_item import DataFrameRequestOutIndexItem
|
|
37
38
|
from .data_frame_unknown_format_error import DataFrameUnknownFormatError
|
|
38
39
|
from .dimension_properties import DimensionProperties
|
|
39
|
-
from .document_chunk import DocumentChunk
|
|
40
40
|
from .drive_agent_response import DriveAgentResponse
|
|
41
|
-
from .file_chunk_request_out import FileChunkRequestOut
|
|
42
41
|
from .file_too_large_error import FileTooLargeError
|
|
43
42
|
from .folder_response import FolderResponse
|
|
44
43
|
from .general_agent_config import GeneralAgentConfig
|
|
@@ -68,7 +67,6 @@ if typing.TYPE_CHECKING:
|
|
|
68
67
|
from .sheet_operation_response import SheetOperationResponse
|
|
69
68
|
from .sql_agent_response import SqlAgentResponse
|
|
70
69
|
from .structured_data_extractor_response import StructuredDataExtractorResponse
|
|
71
|
-
from .tabcolor import Tabcolor
|
|
72
70
|
from .table_row_data import TableRowData
|
|
73
71
|
from .text_content import TextContent
|
|
74
72
|
from .text_format_model import TextFormatModel
|
|
@@ -84,7 +82,6 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
84
82
|
"AssetContentRequestOut": ".asset_content_request_out",
|
|
85
83
|
"AssetNode": ".asset_node",
|
|
86
84
|
"AssetScreenshotResponseOut": ".asset_screenshot_response_out",
|
|
87
|
-
"Backgroundcolor": ".backgroundcolor",
|
|
88
85
|
"BorderModel": ".border_model",
|
|
89
86
|
"BorderStyle": ".border_style",
|
|
90
87
|
"BordersModel": ".borders_model",
|
|
@@ -97,12 +94,14 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
97
94
|
"ChunkContentItem_Text": ".chunk_content_item",
|
|
98
95
|
"ChunkResult": ".chunk_result",
|
|
99
96
|
"ChunkResultChunkId": ".chunk_result_chunk_id",
|
|
100
|
-
"Color": ".color",
|
|
101
97
|
"Content": ".content",
|
|
102
98
|
"ConversationAssetInfo": ".conversation_asset_info",
|
|
103
99
|
"ConversationMessage": ".conversation_message",
|
|
104
100
|
"ConversationResult": ".conversation_result",
|
|
101
|
+
"CreatableAssetType": ".creatable_asset_type",
|
|
102
|
+
"CreateAssetResponseOut": ".create_asset_response_out",
|
|
105
103
|
"CreateNewSheetTabResponse": ".create_new_sheet_tab_response",
|
|
104
|
+
"CreateProjectResponseOut": ".create_project_response_out",
|
|
106
105
|
"CustomAgentResponse": ".custom_agent_response",
|
|
107
106
|
"DataFrameRequestOut": ".data_frame_request_out",
|
|
108
107
|
"DataFrameRequestOutColumnsItem": ".data_frame_request_out_columns_item",
|
|
@@ -110,9 +109,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
110
109
|
"DataFrameRequestOutIndexItem": ".data_frame_request_out_index_item",
|
|
111
110
|
"DataFrameUnknownFormatError": ".data_frame_unknown_format_error",
|
|
112
111
|
"DimensionProperties": ".dimension_properties",
|
|
113
|
-
"DocumentChunk": ".document_chunk",
|
|
114
112
|
"DriveAgentResponse": ".drive_agent_response",
|
|
115
|
-
"FileChunkRequestOut": ".file_chunk_request_out",
|
|
116
113
|
"FileTooLargeError": ".file_too_large_error",
|
|
117
114
|
"FolderResponse": ".folder_response",
|
|
118
115
|
"GeneralAgentConfig": ".general_agent_config",
|
|
@@ -140,7 +137,6 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
140
137
|
"SheetOperationResponse": ".sheet_operation_response",
|
|
141
138
|
"SqlAgentResponse": ".sql_agent_response",
|
|
142
139
|
"StructuredDataExtractorResponse": ".structured_data_extractor_response",
|
|
143
|
-
"Tabcolor": ".tabcolor",
|
|
144
140
|
"TableRowData": ".table_row_data",
|
|
145
141
|
"TextContent": ".text_content",
|
|
146
142
|
"TextFormatModel": ".text_format_model",
|
|
@@ -180,7 +176,6 @@ __all__ = [
|
|
|
180
176
|
"AssetContentRequestOut",
|
|
181
177
|
"AssetNode",
|
|
182
178
|
"AssetScreenshotResponseOut",
|
|
183
|
-
"Backgroundcolor",
|
|
184
179
|
"BorderModel",
|
|
185
180
|
"BorderStyle",
|
|
186
181
|
"BordersModel",
|
|
@@ -193,12 +188,14 @@ __all__ = [
|
|
|
193
188
|
"ChunkContentItem_Text",
|
|
194
189
|
"ChunkResult",
|
|
195
190
|
"ChunkResultChunkId",
|
|
196
|
-
"Color",
|
|
197
191
|
"Content",
|
|
198
192
|
"ConversationAssetInfo",
|
|
199
193
|
"ConversationMessage",
|
|
200
194
|
"ConversationResult",
|
|
195
|
+
"CreatableAssetType",
|
|
196
|
+
"CreateAssetResponseOut",
|
|
201
197
|
"CreateNewSheetTabResponse",
|
|
198
|
+
"CreateProjectResponseOut",
|
|
202
199
|
"CustomAgentResponse",
|
|
203
200
|
"DataFrameRequestOut",
|
|
204
201
|
"DataFrameRequestOutColumnsItem",
|
|
@@ -206,9 +203,7 @@ __all__ = [
|
|
|
206
203
|
"DataFrameRequestOutIndexItem",
|
|
207
204
|
"DataFrameUnknownFormatError",
|
|
208
205
|
"DimensionProperties",
|
|
209
|
-
"DocumentChunk",
|
|
210
206
|
"DriveAgentResponse",
|
|
211
|
-
"FileChunkRequestOut",
|
|
212
207
|
"FileTooLargeError",
|
|
213
208
|
"FolderResponse",
|
|
214
209
|
"GeneralAgentConfig",
|
|
@@ -236,7 +231,6 @@ __all__ = [
|
|
|
236
231
|
"SheetOperationResponse",
|
|
237
232
|
"SqlAgentResponse",
|
|
238
233
|
"StructuredDataExtractorResponse",
|
|
239
|
-
"Tabcolor",
|
|
240
234
|
"TableRowData",
|
|
241
235
|
"TextContent",
|
|
242
236
|
"TextFormatModel",
|
athena/types/border_model.py
CHANGED
|
@@ -5,13 +5,18 @@ import typing
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
7
|
from .border_style import BorderStyle
|
|
8
|
-
from .
|
|
8
|
+
from .theme_color import ThemeColor
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class BorderModel(UniversalBaseModel):
|
|
12
|
-
|
|
12
|
+
color_hex: typing.Optional[str] = pydantic.Field(default=None)
|
|
13
13
|
"""
|
|
14
|
-
Border color
|
|
14
|
+
Border color as hex string (e.g., '#FF0000'). Use either color_hex or color_theme, not both.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
color_theme: typing.Optional[ThemeColor] = pydantic.Field(default=None)
|
|
18
|
+
"""
|
|
19
|
+
Border color as theme reference. Use either color_hex or color_theme, not both. Defaults to theme color 1 if neither is specified.
|
|
15
20
|
"""
|
|
16
21
|
|
|
17
22
|
style: BorderStyle
|
athena/types/cell_format.py
CHANGED
|
@@ -6,20 +6,31 @@ import pydantic
|
|
|
6
6
|
import typing_extensions
|
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
8
|
from ..core.serialization import FieldMetadata
|
|
9
|
-
from .backgroundcolor import Backgroundcolor
|
|
10
9
|
from .borders_model import BordersModel
|
|
11
10
|
from .cell_format_horizontal_alignment import CellFormatHorizontalAlignment
|
|
12
11
|
from .cell_format_vertical_alignment import CellFormatVerticalAlignment
|
|
13
12
|
from .number_format_model import NumberFormatModel
|
|
14
13
|
from .text_format_model import TextFormatModel
|
|
15
14
|
from .textrotation import Textrotation
|
|
15
|
+
from .theme_color import ThemeColor
|
|
16
16
|
from .wrap_strategy import WrapStrategy
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class CellFormat(UniversalBaseModel):
|
|
20
|
-
|
|
21
|
-
typing.Optional[
|
|
22
|
-
] = None
|
|
20
|
+
background_color_hex: typing_extensions.Annotated[
|
|
21
|
+
typing.Optional[str], FieldMetadata(alias="backgroundColor_hex")
|
|
22
|
+
] = pydantic.Field(default=None)
|
|
23
|
+
"""
|
|
24
|
+
Background color as hex string (e.g., '#FF0000'). Use either backgroundColor_hex or backgroundColor_theme, not both.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
background_color_theme: typing_extensions.Annotated[
|
|
28
|
+
typing.Optional[ThemeColor], FieldMetadata(alias="backgroundColor_theme")
|
|
29
|
+
] = pydantic.Field(default=None)
|
|
30
|
+
"""
|
|
31
|
+
Background color as theme reference. Use either backgroundColor_hex or backgroundColor_theme, not both.
|
|
32
|
+
"""
|
|
33
|
+
|
|
23
34
|
borders: typing.Optional[BordersModel] = None
|
|
24
35
|
horizontal_alignment: typing_extensions.Annotated[
|
|
25
36
|
typing.Optional[CellFormatHorizontalAlignment], FieldMetadata(alias="horizontalAlignment")
|
|
@@ -37,6 +37,11 @@ class ConversationAssetInfo(UniversalBaseModel):
|
|
|
37
37
|
User ID who created the conversation
|
|
38
38
|
"""
|
|
39
39
|
|
|
40
|
+
error: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
41
|
+
"""
|
|
42
|
+
Error details if the conversation execution failed
|
|
43
|
+
"""
|
|
44
|
+
|
|
40
45
|
last_channel: typing.Optional[str] = pydantic.Field(default=None)
|
|
41
46
|
"""
|
|
42
47
|
Last active channel for the conversation
|
|
@@ -0,0 +1,46 @@
|
|
|
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 CreateAssetResponseOut(UniversalBaseModel):
|
|
10
|
+
"""
|
|
11
|
+
Response model for asset creation.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
asset_id: str = pydantic.Field()
|
|
15
|
+
"""
|
|
16
|
+
ID of the newly created asset
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
asset_type: str = pydantic.Field()
|
|
20
|
+
"""
|
|
21
|
+
Type of the created asset
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
created_at: str = pydantic.Field()
|
|
25
|
+
"""
|
|
26
|
+
Timestamp when the asset was created
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
parent_folder_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
30
|
+
"""
|
|
31
|
+
ID of the parent folder
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
title: str = pydantic.Field()
|
|
35
|
+
"""
|
|
36
|
+
Title of the created asset
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
if IS_PYDANTIC_V2:
|
|
40
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
41
|
+
else:
|
|
42
|
+
|
|
43
|
+
class Config:
|
|
44
|
+
frozen = True
|
|
45
|
+
smart_union = True
|
|
46
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,51 @@
|
|
|
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 CreateProjectResponseOut(UniversalBaseModel):
|
|
10
|
+
"""
|
|
11
|
+
Response model for project creation.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
asset_id: str = pydantic.Field()
|
|
15
|
+
"""
|
|
16
|
+
ID of the created project asset
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
custom_metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
20
|
+
"""
|
|
21
|
+
Custom metadata associated with the project
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
description: typing.Optional[str] = pydantic.Field(default=None)
|
|
25
|
+
"""
|
|
26
|
+
Description of the project
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
project_type: typing.Optional[str] = pydantic.Field(default=None)
|
|
30
|
+
"""
|
|
31
|
+
Type of the project
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
tags: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
|
|
35
|
+
"""
|
|
36
|
+
Tags associated with the project
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
title: str = pydantic.Field()
|
|
40
|
+
"""
|
|
41
|
+
Title of the created project
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
if IS_PYDANTIC_V2:
|
|
45
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
46
|
+
else:
|
|
47
|
+
|
|
48
|
+
class Config:
|
|
49
|
+
frozen = True
|
|
50
|
+
smart_union = True
|
|
51
|
+
extra = pydantic.Extra.allow
|
|
@@ -31,7 +31,7 @@ class DimensionProperties(UniversalBaseModel):
|
|
|
31
31
|
pydantic.Field(default=None)
|
|
32
32
|
)
|
|
33
33
|
"""
|
|
34
|
-
True if the user manually resized this dimension (e.g., dragged column border to resize)
|
|
34
|
+
True if the user manually resized this dimension (e.g., dragged column border to resize). Must be set to True whenever you set the 'size' field
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
37
|
size: typing.Optional[int] = pydantic.Field(default=None)
|
athena/types/sheet.py
CHANGED
|
@@ -8,7 +8,7 @@ from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
|
8
8
|
from ..core.serialization import FieldMetadata
|
|
9
9
|
from .dimension_properties import DimensionProperties
|
|
10
10
|
from .grid_range import GridRange
|
|
11
|
-
from .
|
|
11
|
+
from .theme_color import ThemeColor
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class Sheet(UniversalBaseModel):
|
|
@@ -21,7 +21,7 @@ class Sheet(UniversalBaseModel):
|
|
|
21
21
|
typing.Optional[typing.List[typing.Optional[DimensionProperties]]], FieldMetadata(alias="columnMetadata")
|
|
22
22
|
] = pydantic.Field(default=None)
|
|
23
23
|
"""
|
|
24
|
-
Array of column properties, one per column (1-indexed). Each entry defines width, visibility for that column.
|
|
24
|
+
Array of column properties, one per column (1-indexed). REQUIRED when changing column widths. Each entry defines width, visibility for that column. Example: To set column C (index 3) width to 150px: columnMetadata[3] = DimensionProperties(size=150). Example: To hide column B: columnMetadata[2] = DimensionProperties(hiddenByUser=True). Common widths: 100px (default), 150px (wide text), 200px (very wide), 50px (narrow IDs)
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
frozen_column_count: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="frozenColumnCount")] = (
|
|
@@ -48,7 +48,7 @@ class Sheet(UniversalBaseModel):
|
|
|
48
48
|
typing.Optional[typing.List[typing.Optional[DimensionProperties]]], FieldMetadata(alias="rowMetadata")
|
|
49
49
|
] = pydantic.Field(default=None)
|
|
50
50
|
"""
|
|
51
|
-
Array of row properties, one per row (1-indexed). Each entry defines height, visibility for that row.
|
|
51
|
+
Array of row properties, one per row (1-indexed). REQUIRED when changing row heights. Each entry defines height, visibility for that row. Example: To set row 5 height to 50px: rowMetadata[5] = DimensionProperties(size=50). Example: To hide row 3: rowMetadata[3] = DimensionProperties(hiddenByUser=True). Common heights: 21px (default), 30px (comfortable), 50px (tall headers)
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
sheet_id: typing_extensions.Annotated[int, FieldMetadata(alias="sheetId")] = pydantic.Field()
|
|
@@ -57,11 +57,18 @@ class Sheet(UniversalBaseModel):
|
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
show_grid_lines: typing_extensions.Annotated[typing.Optional[bool], FieldMetadata(alias="showGridLines")] = None
|
|
60
|
-
|
|
61
|
-
default=None
|
|
60
|
+
tab_color_hex: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="tabColor_hex")] = (
|
|
61
|
+
pydantic.Field(default=None)
|
|
62
62
|
)
|
|
63
63
|
"""
|
|
64
|
-
Tab color
|
|
64
|
+
Tab color as hex string (e.g., '#FF0000'). Use either tabColor_hex or tabColor_theme, not both.
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
tab_color_theme: typing_extensions.Annotated[typing.Optional[ThemeColor], FieldMetadata(alias="tabColor_theme")] = (
|
|
68
|
+
pydantic.Field(default=None)
|
|
69
|
+
)
|
|
70
|
+
"""
|
|
71
|
+
Tab color as theme reference. Use either tabColor_hex or tabColor_theme, not both.
|
|
65
72
|
"""
|
|
66
73
|
|
|
67
74
|
title: str
|
|
@@ -6,12 +6,21 @@ import pydantic
|
|
|
6
6
|
import typing_extensions
|
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
8
|
from ..core.serialization import FieldMetadata
|
|
9
|
-
from .
|
|
9
|
+
from .theme_color import ThemeColor
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class TextFormatModel(UniversalBaseModel):
|
|
13
13
|
bold: typing.Optional[bool] = None
|
|
14
|
-
|
|
14
|
+
color_hex: typing.Optional[str] = pydantic.Field(default=None)
|
|
15
|
+
"""
|
|
16
|
+
Text color as hex string (e.g., '#FF0000'). Use either color_hex or color_theme, not both.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
color_theme: typing.Optional[ThemeColor] = pydantic.Field(default=None)
|
|
20
|
+
"""
|
|
21
|
+
Text color as theme reference. Use either color_hex or color_theme, not both.
|
|
22
|
+
"""
|
|
23
|
+
|
|
15
24
|
font_family: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="fontFamily")] = None
|
|
16
25
|
font_size: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="fontSize")] = None
|
|
17
26
|
italic: typing.Optional[bool] = None
|
|
@@ -22,6 +22,11 @@ class ThreadStatusResponseOut(UniversalBaseModel):
|
|
|
22
22
|
ISO timestamp when thread was created
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
+
error: typing.Optional[str] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
Error message if thread execution failed
|
|
28
|
+
"""
|
|
29
|
+
|
|
25
30
|
status: str = pydantic.Field()
|
|
26
31
|
"""
|
|
27
32
|
Current status of the thread (e.g., 'running', 'completed', 'failed')
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
athena/__init__.py,sha256=
|
|
1
|
+
athena/__init__.py,sha256=Sb-YPlpSo4ZGx4wDSOmIB6BQbgFOBeHRh8TdSpI5uGA,8927
|
|
2
2
|
athena/agents/__init__.py,sha256=LqM1Kj7aFzYoFsB7xrYKPDJAnOWmcig1LNE4jAiWpJQ,1166
|
|
3
3
|
athena/agents/client.py,sha256=b3QvSCRsiHD6UREN7llGY946V-oZdKkhouQ6p_nH1j8,8044
|
|
4
4
|
athena/agents/drive/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
@@ -18,13 +18,13 @@ athena/aop/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
|
18
18
|
athena/aop/client.py,sha256=Fg7rNF1k78MIKDELy8GE-DfAaJvHFUUBG5haMR_Vefo,6758
|
|
19
19
|
athena/aop/raw_client.py,sha256=ZQRtNNirk1xfbkKHADxSCPB0UQjf4HO5l-6z7W936X8,18509
|
|
20
20
|
athena/assets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
21
|
-
athena/assets/client.py,sha256=
|
|
22
|
-
athena/assets/raw_client.py,sha256=
|
|
21
|
+
athena/assets/client.py,sha256=bkWVNjqEgG6h3cIg6b3L9h8ireNTsQpvDj5bVfgxC8k,17012
|
|
22
|
+
athena/assets/raw_client.py,sha256=x5J-o3dvAPFg1rShQCrjhBJYar2ySBkhjlBafDF3d7E,30181
|
|
23
23
|
athena/base_client.py,sha256=IlYf1TLV3w-JZPATzyT-b5wSrjKm-fsT_3bC172GpVI,9576
|
|
24
|
-
athena/client.py,sha256=
|
|
24
|
+
athena/client.py,sha256=KY9yAklJA8XWmRu_LzHDEF3KrTwwl2phnfMeOnHYWQs,22142
|
|
25
25
|
athena/core/__init__.py,sha256=GkNNgA0CeqvpCzo2vVtAafE8YcnGV-VGtbU5op93lbc,3624
|
|
26
26
|
athena/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
27
|
-
athena/core/client_wrapper.py,sha256=
|
|
27
|
+
athena/core/client_wrapper.py,sha256=x63PXcPhsMOQg8_G9z4PGbjn530ZFt4s2SfWJvhJ8_o,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=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
|
|
@@ -36,7 +36,7 @@ athena/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,
|
|
|
36
36
|
athena/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
37
37
|
athena/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
38
38
|
athena/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
|
|
39
|
-
athena/environment.py,sha256=
|
|
39
|
+
athena/environment.py,sha256=qTOfpg8B5EGqwcJFB4ANkLFn2Y6rsPWGuhU8GRPlFl0,162
|
|
40
40
|
athena/errors/__init__.py,sha256=mz82PTudQ7K7-oV8Yxa99QipVhg7RmUmPfvg-QdQMHc,1959
|
|
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
|
|
@@ -58,11 +58,11 @@ athena/tools/__init__.py,sha256=T5lHIgOR5ESMpuKeK0R8nVbYnP0LK2KtQKv5wkGlO_A,1621
|
|
|
58
58
|
athena/tools/calendar/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
59
59
|
athena/tools/calendar/client.py,sha256=NMiwSaBD-JYcAoudGyBMtWVIWPm6ChFqOFSndxYupY0,4385
|
|
60
60
|
athena/tools/calendar/raw_client.py,sha256=6HmAXGcOxXuRMdxA1_U1oROkouJebOXVFAnz5CDHgto,6858
|
|
61
|
-
athena/tools/client.py,sha256=
|
|
61
|
+
athena/tools/client.py,sha256=oz9Uc4HEW__51OF75WO5m1l_-1Or33x4KLhKrYyO-g4,23098
|
|
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=rnx7bagSCtWuDNxJ4c6vHuRcP_Tv6rS7DbWT4LS3caQ,53212
|
|
66
66
|
athena/tools/sheets/__init__.py,sha256=hX95w8l-Ei_8uDc1DIpsj_1Y7G_C88V6JVkn2oVtqd8,1131
|
|
67
67
|
athena/tools/sheets/client.py,sha256=zg8i4i7ZZHuMwjM5jP5yCY4uSt9_UR_lWt6XdZw3MoE,59112
|
|
68
68
|
athena/tools/sheets/raw_client.py,sha256=CmIx3uq_szoyyvSyFIkzv4eM2Sw1SZfHLkCaU3srEpo,97154
|
|
@@ -76,40 +76,39 @@ 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=EBAoLXAl5YZCDYkI-YPJA0035ZRyGktyW4tspFXOQso,1180
|
|
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=TCuDN_zXSNt_IcOkolPL_3nCuc4OoksLfAQ8pQHtZ7c,10233
|
|
80
80
|
athena/types/aop_async_execute_response_out.py,sha256=Ggs9j5JvLCMaVwaHNyY3whA5gcUffLqc4PwuxYWI-38,1642
|
|
81
81
|
athena/types/aop_execute_request_in.py,sha256=mEsMKyNN6e90gZra733lJDC6z0bZWdc72af3B-Z5aqE,889
|
|
82
82
|
athena/types/aop_execute_response_out.py,sha256=_w6_WERRgGEVI0O_4qRfVZPLpcaa8yihWgwB4ZV0Zs8,1847
|
|
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
85
|
athena/types/asset_screenshot_response_out.py,sha256=tiAt9xnpXWMRUnblWzUEJbXYzB412kdqKkb_02OFFGE,1069
|
|
86
|
-
athena/types/
|
|
87
|
-
athena/types/border_model.py,sha256=fwddWJwNQxxgrjItRFLK5tm7wCNSQUe7l3cKhAvHv1U,813
|
|
86
|
+
athena/types/border_model.py,sha256=GQcHV5jBYSLxyLhQCZPPuItwH-oOzP1urGhdgEg7zU0,1025
|
|
88
87
|
athena/types/border_style.py,sha256=-3j_VzGM4SHzljbSyWZc8InthLG9GVqMyVK7uYopLEw,211
|
|
89
88
|
athena/types/borders_model.py,sha256=YqVsHbJ8irgO3flFwZyGXTWLpdCRy_sQ_XVksGjM9fs,2163
|
|
90
|
-
athena/types/cell_format.py,sha256=
|
|
89
|
+
athena/types/cell_format.py,sha256=GskvpmBPCt6Yo_HqUM0XWEjbMJ5fBk1OLMgYKd33YEE,2536
|
|
91
90
|
athena/types/cell_format_horizontal_alignment.py,sha256=UnSTOLSLVUK0zHfcOLGnZb8grjnzbnIhkh7-ikz9rLc,180
|
|
92
91
|
athena/types/cell_format_vertical_alignment.py,sha256=lvp9Em3mgHmECuUS_iH9tHrP4GcnoB_DTVKJC74tfGs,178
|
|
93
92
|
athena/types/chunk.py,sha256=9hE8tQHBknGcdY7eEgOOwd27KHbMIZXV203jaoVgx2c,747
|
|
94
93
|
athena/types/chunk_content_item.py,sha256=nKP8lq4AbbAZEKY7bRKOc7sDvqfyslCBCn8Cl_Pdz0c,1128
|
|
95
94
|
athena/types/chunk_result.py,sha256=hgrS4hMeuwTRpJ2YrMdrW_QWWWUQ82iYVVTuhFWm1X0,734
|
|
96
95
|
athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
|
|
97
|
-
athena/types/color.py,sha256=O4wDqWkVhYgl-gtTh74qwzGKSbaGe2K8m5R5ra_0o4k,155
|
|
98
96
|
athena/types/content.py,sha256=sSPPkZkHZgA_rO6UyTnR2QBK5mOqUz2pZ--B86r5584,211
|
|
99
|
-
athena/types/conversation_asset_info.py,sha256=
|
|
97
|
+
athena/types/conversation_asset_info.py,sha256=xqZMI9W77vPj8jjiNbtIMZhPOeEamCZ0eXRS1Cxiuek,3077
|
|
100
98
|
athena/types/conversation_message.py,sha256=bJsO0T9ktciCAys28ESQJQNfY-29pI3lKxPhRb7D4ic,1084
|
|
101
99
|
athena/types/conversation_result.py,sha256=EwC27cGZWzRyrJxlyKrevndnOSDBM0DkaOUu7foeYeI,1851
|
|
100
|
+
athena/types/creatable_asset_type.py,sha256=UZnmVDAw4ReX3BuQ8A_TgviIukIVFnj_AdJqzCcWIpU,179
|
|
101
|
+
athena/types/create_asset_response_out.py,sha256=PcuJ0MDRUHKD40-dSSfshfnImhXVx5G5NRG0s7bqBEs,1042
|
|
102
102
|
athena/types/create_new_sheet_tab_response.py,sha256=RF8iOL3mkSc3pY0pqQhvw9IdnncxDC_-XdSUhqPODsM,892
|
|
103
|
+
athena/types/create_project_response_out.py,sha256=GPz5GL4MwhvIlR4WZk0H79T7Qyb0nGP1aXYsAQSlIdA,1285
|
|
103
104
|
athena/types/custom_agent_response.py,sha256=hzw1s7mcCI9V58l5OqK4Q59AGF_NctSx5scjJeVWckk,684
|
|
104
105
|
athena/types/data_frame_request_out.py,sha256=wyVIEEI6mqSoH6SyXTQpzLCJOWwsAlUvG9iAVlNuNOU,1076
|
|
105
106
|
athena/types/data_frame_request_out_columns_item.py,sha256=9cjzciFv6C8n8Griytt_q_8ovkzHViS5tvUcMDfkfKE,143
|
|
106
107
|
athena/types/data_frame_request_out_data_item_item.py,sha256=KMTJRr-1bdKDNMbUericCliwRoPHLGRV-n2bJtxdRW0,144
|
|
107
108
|
athena/types/data_frame_request_out_index_item.py,sha256=bW7oe912trpkYKodj-I_AiTXXy61yWzliekcsUZkZE0,141
|
|
108
109
|
athena/types/data_frame_unknown_format_error.py,sha256=yEykbkXCfsxDKYHXps8jOtv6RENOn5vLNKpoKwBVJ5Q,575
|
|
109
|
-
athena/types/dimension_properties.py,sha256=
|
|
110
|
-
athena/types/document_chunk.py,sha256=Ma7nl0SnTZsshYtpjh37OJhwrNPmSkzw_QUaFChPCD0,651
|
|
110
|
+
athena/types/dimension_properties.py,sha256=jg9r6FMf3MwD90oKQTGbQ0HN-G979cbH3zsTsD7mfoc,1764
|
|
111
111
|
athena/types/drive_agent_response.py,sha256=sxxt3DVibsYrF8bnil9ZKD3GFkD0m2hp9qDfQSaNqcs,639
|
|
112
|
-
athena/types/file_chunk_request_out.py,sha256=5utKRptaqyizg0D9ogPEM1IPJIUW2NMHNLewYZLNe8Q,665
|
|
113
112
|
athena/types/file_too_large_error.py,sha256=xXAMDgmJ9w0AGu-dKF1m1nCKtoqDetUf2DRqQ64npHY,527
|
|
114
113
|
athena/types/folder_response.py,sha256=pKIzL_4PpNweVrfvMdJPsToaaxZqMuW8071zJ40-Xow,811
|
|
115
114
|
athena/types/general_agent_config.py,sha256=rLajGpiUp4sFQj4lusnY8T8VPmXynQjR4VIO3PQ4KEM,903
|
|
@@ -131,20 +130,19 @@ athena/types/prompt_message.py,sha256=5WrlKURJuD0DPhMmP3gpBNuRgGfbE9ArY0BW_OSq0P
|
|
|
131
130
|
athena/types/public_asset_out.py,sha256=rBPFX3PKM0zxK3Qh8uICE14idg-UkDDob_xFRprO4bo,2775
|
|
132
131
|
athena/types/research_agent_response.py,sha256=BnBRbDcQEh-qNjLfvjoigTVHtkYZjwdjYU5ONjr-OWQ,656
|
|
133
132
|
athena/types/save_asset_request_out.py,sha256=_jM8B291p-dilNcrGSt3s26tjrj77c6kLpbxPymjJhA,600
|
|
134
|
-
athena/types/sheet.py,sha256=
|
|
133
|
+
athena/types/sheet.py,sha256=kVDoD59Zox2W2k2u-sk4GlmDJiCTfpXg3DKPlBzGtb0,3892
|
|
135
134
|
athena/types/sheet_operation_response.py,sha256=w-Nl11a1kii-RHTzgrt9QjpN1nuWfbF4nO4zAO2cCpw,793
|
|
136
135
|
athena/types/sql_agent_response.py,sha256=qp-VIpsZziEkx8EIF4bdhmlPqqH8a8GaCWLANJxE5kU,765
|
|
137
136
|
athena/types/structured_data_extractor_response.py,sha256=yFQ0CiFDdlZIq2X8UprEAwOPhNBqG8lzVu9_aDySW2M,1067
|
|
138
|
-
athena/types/tabcolor.py,sha256=_PSGZSD-aFI1GrTz4lKXKg6gsYgONO1Ed96QGw0JLWE,158
|
|
139
137
|
athena/types/table_row_data.py,sha256=leurR2kOfMxRhv9qVKfpU-iv1iW3400zEahAH9hwMT0,141
|
|
140
138
|
athena/types/text_content.py,sha256=tcVCPj3tHh5zQcTElr2tdCIjjfx3ZI63rKIlaG8vo64,592
|
|
141
|
-
athena/types/text_format_model.py,sha256=
|
|
139
|
+
athena/types/text_format_model.py,sha256=YlUuw71ElT_LdYUzgetKzs6pabIy_-N-udC4EwVq0ZI,1356
|
|
142
140
|
athena/types/textrotation.py,sha256=wIAadKprL9_UMxUM_V3EJ9XOgC_Rz6otcrnfLXJdqX8,141
|
|
143
141
|
athena/types/theme_color.py,sha256=pSt2QC4JB8qxRhUZX8Hgz_2eEX-ou_lWExIIHcjxZ-A,558
|
|
144
|
-
athena/types/thread_status_response_out.py,sha256=
|
|
142
|
+
athena/types/thread_status_response_out.py,sha256=g8OA1dt4u_h1gBd_8NGqiGL-7-zr6rDwYxpzW5VgqHI,1344
|
|
145
143
|
athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
|
|
146
144
|
athena/types/wrap_strategy.py,sha256=ykPFCr91HGvzIk9BRppW_UBWoUamFxDhLO_ETzQgVKI,164
|
|
147
145
|
athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
|
|
148
|
-
athena_intelligence-0.1.
|
|
149
|
-
athena_intelligence-0.1.
|
|
150
|
-
athena_intelligence-0.1.
|
|
146
|
+
athena_intelligence-0.1.375.dist-info/METADATA,sha256=J6dtuo4xGg6N6NuDpqy_BsRUNR_DOZm4vTkrxpLvQ6M,5440
|
|
147
|
+
athena_intelligence-0.1.375.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
148
|
+
athena_intelligence-0.1.375.dist-info/RECORD,,
|