athena-intelligence 0.1.197__py3-none-any.whl → 0.1.199__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 +4 -0
- athena/core/client_wrapper.py +2 -2
- athena/tools/__init__.py +2 -2
- athena/tools/client.py +5 -0
- athena/tools/sheets/__init__.py +4 -0
- athena/tools/sheets/client.py +1918 -0
- athena/tools/sheets/raw_client.py +2306 -0
- athena/types/__init__.py +4 -0
- athena/types/create_new_sheet_tab_response.py +37 -0
- athena/types/sheet_operation_response.py +32 -0
- {athena_intelligence-0.1.197.dist-info → athena_intelligence-0.1.199.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.197.dist-info → athena_intelligence-0.1.199.dist-info}/RECORD +13 -8
- {athena_intelligence-0.1.197.dist-info → athena_intelligence-0.1.199.dist-info}/WHEEL +0 -0
athena/types/__init__.py
CHANGED
@@ -11,6 +11,7 @@ from .chunk_content_item import ChunkContentItem, ChunkContentItem_ImageUrl, Chu
|
|
11
11
|
from .chunk_result import ChunkResult
|
12
12
|
from .chunk_result_chunk_id import ChunkResultChunkId
|
13
13
|
from .content import Content
|
14
|
+
from .create_new_sheet_tab_response import CreateNewSheetTabResponse
|
14
15
|
from .custom_agent_response import CustomAgentResponse
|
15
16
|
from .data_frame_request_out import DataFrameRequestOut
|
16
17
|
from .data_frame_request_out_columns_item import DataFrameRequestOutColumnsItem
|
@@ -42,6 +43,7 @@ from .prompt_message import PromptMessage
|
|
42
43
|
from .public_asset_out import PublicAssetOut
|
43
44
|
from .research_agent_response import ResearchAgentResponse
|
44
45
|
from .save_asset_request_out import SaveAssetRequestOut
|
46
|
+
from .sheet_operation_response import SheetOperationResponse
|
45
47
|
from .sql_agent_response import SqlAgentResponse
|
46
48
|
from .structured_data_extractor_response import StructuredDataExtractorResponse
|
47
49
|
from .text_content import TextContent
|
@@ -59,6 +61,7 @@ __all__ = [
|
|
59
61
|
"ChunkResult",
|
60
62
|
"ChunkResultChunkId",
|
61
63
|
"Content",
|
64
|
+
"CreateNewSheetTabResponse",
|
62
65
|
"CustomAgentResponse",
|
63
66
|
"DataFrameRequestOut",
|
64
67
|
"DataFrameRequestOutColumnsItem",
|
@@ -88,6 +91,7 @@ __all__ = [
|
|
88
91
|
"PublicAssetOut",
|
89
92
|
"ResearchAgentResponse",
|
90
93
|
"SaveAssetRequestOut",
|
94
|
+
"SheetOperationResponse",
|
91
95
|
"SqlAgentResponse",
|
92
96
|
"StructuredDataExtractorResponse",
|
93
97
|
"TextContent",
|
@@ -0,0 +1,37 @@
|
|
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 CreateNewSheetTabResponse(UniversalBaseModel):
|
10
|
+
asset_id: str = pydantic.Field()
|
11
|
+
"""
|
12
|
+
The ID of the spreadsheet asset
|
13
|
+
"""
|
14
|
+
|
15
|
+
message: str = pydantic.Field()
|
16
|
+
"""
|
17
|
+
Success message or error description
|
18
|
+
"""
|
19
|
+
|
20
|
+
sheet_id: int = pydantic.Field()
|
21
|
+
"""
|
22
|
+
The ID of the newly created sheet tab
|
23
|
+
"""
|
24
|
+
|
25
|
+
success: bool = pydantic.Field()
|
26
|
+
"""
|
27
|
+
Whether the operation was successful
|
28
|
+
"""
|
29
|
+
|
30
|
+
if IS_PYDANTIC_V2:
|
31
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
32
|
+
else:
|
33
|
+
|
34
|
+
class Config:
|
35
|
+
frozen = True
|
36
|
+
smart_union = True
|
37
|
+
extra = pydantic.Extra.allow
|
@@ -0,0 +1,32 @@
|
|
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 SheetOperationResponse(UniversalBaseModel):
|
10
|
+
asset_id: str = pydantic.Field()
|
11
|
+
"""
|
12
|
+
The ID of the spreadsheet asset
|
13
|
+
"""
|
14
|
+
|
15
|
+
message: str = pydantic.Field()
|
16
|
+
"""
|
17
|
+
Success message or error description
|
18
|
+
"""
|
19
|
+
|
20
|
+
success: bool = pydantic.Field()
|
21
|
+
"""
|
22
|
+
Whether the operation was successful
|
23
|
+
"""
|
24
|
+
|
25
|
+
if IS_PYDANTIC_V2:
|
26
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
27
|
+
else:
|
28
|
+
|
29
|
+
class Config:
|
30
|
+
frozen = True
|
31
|
+
smart_union = True
|
32
|
+
extra = pydantic.Extra.allow
|
@@ -1,4 +1,4 @@
|
|
1
|
-
athena/__init__.py,sha256=
|
1
|
+
athena/__init__.py,sha256=Z5VOxDLNVeRpmNJz19W7I1YXlgSDE5fXkLb5UBl7QBQ,3409
|
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
|
@@ -21,7 +21,7 @@ athena/base_client.py,sha256=dWl0sEjfhGQ_Jj_wq0ypDrGnOoi1s5YwCXinP6Qnyjk,6336
|
|
21
21
|
athena/client.py,sha256=lK3vVU3TF3YjPpiohpxcuRl8x_sSw8HmQ-uuDDeAT6I,22161
|
22
22
|
athena/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
23
23
|
athena/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
24
|
-
athena/core/client_wrapper.py,sha256=
|
24
|
+
athena/core/client_wrapper.py,sha256=RHEZtS5N9hAcCrN0x6LgnT9w8WmAlpuLkWc9kOnTzeI,2392
|
25
25
|
athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
26
26
|
athena/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
27
27
|
athena/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
@@ -48,15 +48,18 @@ athena/query/client.py,sha256=X4fBmmmawPaBEt9xWIuhoAcohPKmMadKzpgcEp22oYA,5692
|
|
48
48
|
athena/query/raw_client.py,sha256=aD0CfHJrTZnEiIGwsk4ZSUIueKfDV9vdvMxsfBkvDWs,13701
|
49
49
|
athena/query/types/__init__.py,sha256=O7bsrzp7vi-HiEiDq7X6dGcElLkCbWtyQ4wqP6Qdyp0,226
|
50
50
|
athena/query/types/query_execute_request_database_asset_ids.py,sha256=aoVl5Xb34Q27hYGuVTnByGIxtHkL67wAwzXh7eJctew,154
|
51
|
-
athena/tools/__init__.py,sha256
|
51
|
+
athena/tools/__init__.py,sha256=Lq5sY-WpodI9cuRtzoJXXPiK7oQ-JAopxo2-M6ugJEU,326
|
52
52
|
athena/tools/calendar/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
53
53
|
athena/tools/calendar/client.py,sha256=NMiwSaBD-JYcAoudGyBMtWVIWPm6ChFqOFSndxYupY0,4385
|
54
54
|
athena/tools/calendar/raw_client.py,sha256=6HmAXGcOxXuRMdxA1_U1oROkouJebOXVFAnz5CDHgto,6858
|
55
|
-
athena/tools/client.py,sha256=
|
55
|
+
athena/tools/client.py,sha256=MoSKdWoj5GP1Ars8vRZOq2XTSxZjgKBnXIoBGKa7x_g,19298
|
56
56
|
athena/tools/email/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
57
57
|
athena/tools/email/client.py,sha256=dOidOOOLHdfz2c3nykzyOa7nTftS91d2_aws0LTg8DU,5921
|
58
58
|
athena/tools/email/raw_client.py,sha256=GkSxb-RFdhGgFNghnwH6i0cPI_gfWGLUmWvBNlBlhE4,9962
|
59
59
|
athena/tools/raw_client.py,sha256=gUwmZV08uBGmTTNoWFuYGPMnFxPEhswKPDEbLIcVHPo,53027
|
60
|
+
athena/tools/sheets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
61
|
+
athena/tools/sheets/client.py,sha256=5X-ziwAmbX5IpW2tH01oGdpY9ty83AlziVn9IBa3mAA,49632
|
62
|
+
athena/tools/sheets/raw_client.py,sha256=zodZ4HEYMJMAck8N-CN50yuVDin1KyGmUFTrHvmMQ4s,79651
|
60
63
|
athena/tools/structured_data_extractor/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
61
64
|
athena/tools/structured_data_extractor/client.py,sha256=V1FcGZTPbrlz2d9oQZhsj3UIN1ZlZfnqRdDXj16xiPs,10623
|
62
65
|
athena/tools/structured_data_extractor/raw_client.py,sha256=1ZYZBssmf1jDomopeJ3PMRLql3zT4c7ssRNNLa1YrGE,11245
|
@@ -65,7 +68,7 @@ athena/tools/tasks/client.py,sha256=c_YZ7OjQNJmPKbeeXJznXj3zo5CRFSv02dLupAdHAyo,
|
|
65
68
|
athena/tools/tasks/raw_client.py,sha256=Mexzuf_HcRXWNlESDGQkHHv5tC2tAo-AX3PBSuSRO3U,3812
|
66
69
|
athena/tools/types/__init__.py,sha256=ZI6REilQ0Xuocjd8iyNVfLvOsA2Ltlb8--px07wRSPg,217
|
67
70
|
athena/tools/types/tools_data_frame_request_columns_item.py,sha256=GA1FUlTV_CfSc-KToTAwFf4Exl0rr4fsweVZupztjw0,138
|
68
|
-
athena/types/__init__.py,sha256=
|
71
|
+
athena/types/__init__.py,sha256=TH-zHkr7p_GvtBIbuGBGQPSv71jwsooaaLzczFfVas4,3777
|
69
72
|
athena/types/asset_content_request_out.py,sha256=RYlcY6j6Ju5EQL7UquDwyTe7uqxyuO8Bg8LCsv1YiUE,652
|
70
73
|
athena/types/asset_node.py,sha256=3l7CUK2c_h4QT8ktSq0rFP9veF9G_V9mNe3NZlGl-xQ,804
|
71
74
|
athena/types/asset_not_found_error.py,sha256=lIQpdTXCgbXRs21XCMhd_kB7fR6Y6Ep112mK4rejNx0,528
|
@@ -75,6 +78,7 @@ athena/types/chunk_content_item.py,sha256=nKP8lq4AbbAZEKY7bRKOc7sDvqfyslCBCn8Cl_
|
|
75
78
|
athena/types/chunk_result.py,sha256=hgrS4hMeuwTRpJ2YrMdrW_QWWWUQ82iYVVTuhFWm1X0,734
|
76
79
|
athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
|
77
80
|
athena/types/content.py,sha256=sSPPkZkHZgA_rO6UyTnR2QBK5mOqUz2pZ--B86r5584,211
|
81
|
+
athena/types/create_new_sheet_tab_response.py,sha256=RF8iOL3mkSc3pY0pqQhvw9IdnncxDC_-XdSUhqPODsM,892
|
78
82
|
athena/types/custom_agent_response.py,sha256=hzw1s7mcCI9V58l5OqK4Q59AGF_NctSx5scjJeVWckk,684
|
79
83
|
athena/types/data_frame_request_out.py,sha256=wyVIEEI6mqSoH6SyXTQpzLCJOWwsAlUvG9iAVlNuNOU,1076
|
80
84
|
athena/types/data_frame_request_out_columns_item.py,sha256=9cjzciFv6C8n8Griytt_q_8ovkzHViS5tvUcMDfkfKE,143
|
@@ -102,11 +106,12 @@ athena/types/prompt_message.py,sha256=5WrlKURJuD0DPhMmP3gpBNuRgGfbE9ArY0BW_OSq0P
|
|
102
106
|
athena/types/public_asset_out.py,sha256=rBPFX3PKM0zxK3Qh8uICE14idg-UkDDob_xFRprO4bo,2775
|
103
107
|
athena/types/research_agent_response.py,sha256=BnBRbDcQEh-qNjLfvjoigTVHtkYZjwdjYU5ONjr-OWQ,656
|
104
108
|
athena/types/save_asset_request_out.py,sha256=_jM8B291p-dilNcrGSt3s26tjrj77c6kLpbxPymjJhA,600
|
109
|
+
athena/types/sheet_operation_response.py,sha256=w-Nl11a1kii-RHTzgrt9QjpN1nuWfbF4nO4zAO2cCpw,793
|
105
110
|
athena/types/sql_agent_response.py,sha256=qp-VIpsZziEkx8EIF4bdhmlPqqH8a8GaCWLANJxE5kU,765
|
106
111
|
athena/types/structured_data_extractor_response.py,sha256=yFQ0CiFDdlZIq2X8UprEAwOPhNBqG8lzVu9_aDySW2M,1067
|
107
112
|
athena/types/text_content.py,sha256=tcVCPj3tHh5zQcTElr2tdCIjjfx3ZI63rKIlaG8vo64,592
|
108
113
|
athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
|
109
114
|
athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
|
110
|
-
athena_intelligence-0.1.
|
111
|
-
athena_intelligence-0.1.
|
112
|
-
athena_intelligence-0.1.
|
115
|
+
athena_intelligence-0.1.199.dist-info/METADATA,sha256=in6hZgZt9peNhaWYlXyowX-04Om_qTWQFRgrmlt1iFQ,5440
|
116
|
+
athena_intelligence-0.1.199.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
117
|
+
athena_intelligence-0.1.199.dist-info/RECORD,,
|
File without changes
|