athena-intelligence 0.1.206__py3-none-any.whl → 0.1.208__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 CHANGED
@@ -17,6 +17,7 @@ from .types import (
17
17
  ChunkResult,
18
18
  ChunkResultChunkId,
19
19
  Content,
20
+ ConversationAssetInfo,
20
21
  CreateNewSheetTabResponse,
21
22
  CustomAgentResponse,
22
23
  DataFrameRequestOut,
@@ -51,6 +52,7 @@ from .types import (
51
52
  SqlAgentResponse,
52
53
  StructuredDataExtractorResponse,
53
54
  TextContent,
55
+ ThreadStatusResponseOut,
54
56
  Type,
55
57
  )
56
58
  from .errors import (
@@ -62,7 +64,7 @@ from .errors import (
62
64
  UnprocessableEntityError,
63
65
  UnsupportedMediaTypeError,
64
66
  )
65
- from . import agents, aop, assets, query, tools
67
+ from . import agents, aop, assets, query, threads, tools
66
68
  from .client import AsyncAthena, Athena
67
69
  from .environment import AthenaEnvironment
68
70
  from .query import QueryExecuteRequestDatabaseAssetIds
@@ -89,6 +91,7 @@ __all__ = [
89
91
  "ChunkResultChunkId",
90
92
  "Content",
91
93
  "ContentTooLargeError",
94
+ "ConversationAssetInfo",
92
95
  "CreateNewSheetTabResponse",
93
96
  "CustomAgentResponse",
94
97
  "DataFrameRequestOut",
@@ -126,6 +129,7 @@ __all__ = [
126
129
  "SqlAgentResponse",
127
130
  "StructuredDataExtractorResponse",
128
131
  "TextContent",
132
+ "ThreadStatusResponseOut",
129
133
  "ToolsDataFrameRequestColumnsItem",
130
134
  "Type",
131
135
  "UnauthorizedError",
@@ -136,5 +140,6 @@ __all__ = [
136
140
  "aop",
137
141
  "assets",
138
142
  "query",
143
+ "threads",
139
144
  "tools",
140
145
  ]
athena/base_client.py CHANGED
@@ -9,6 +9,7 @@ from .assets.client import AssetsClient, AsyncAssetsClient
9
9
  from .core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
10
10
  from .environment import AthenaEnvironment
11
11
  from .query.client import AsyncQueryClient, QueryClient
12
+ from .threads.client import AsyncThreadsClient, ThreadsClient
12
13
  from .tools.client import AsyncToolsClient, ToolsClient
13
14
 
14
15
 
@@ -81,6 +82,7 @@ class BaseAthena:
81
82
  self.aop = AopClient(client_wrapper=self._client_wrapper)
82
83
  self.assets = AssetsClient(client_wrapper=self._client_wrapper)
83
84
  self.query = QueryClient(client_wrapper=self._client_wrapper)
85
+ self.threads = ThreadsClient(client_wrapper=self._client_wrapper)
84
86
  self.tools = ToolsClient(client_wrapper=self._client_wrapper)
85
87
 
86
88
 
@@ -153,6 +155,7 @@ class AsyncBaseAthena:
153
155
  self.aop = AsyncAopClient(client_wrapper=self._client_wrapper)
154
156
  self.assets = AsyncAssetsClient(client_wrapper=self._client_wrapper)
155
157
  self.query = AsyncQueryClient(client_wrapper=self._client_wrapper)
158
+ self.threads = AsyncThreadsClient(client_wrapper=self._client_wrapper)
156
159
  self.tools = AsyncToolsClient(client_wrapper=self._client_wrapper)
157
160
 
158
161
 
@@ -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.206",
25
+ "User-Agent": "athena-intelligence/0.1.208",
26
26
  "X-Fern-Language": "Python",
27
27
  "X-Fern-SDK-Name": "athena-intelligence",
28
- "X-Fern-SDK-Version": "0.1.206",
28
+ "X-Fern-SDK-Version": "0.1.208",
29
29
  **(self.get_custom_headers() or {}),
30
30
  }
31
31
  headers["X-API-KEY"] = self.api_key
@@ -0,0 +1,4 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ # isort: skip_file
4
+
@@ -0,0 +1,114 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
6
+ from ..core.request_options import RequestOptions
7
+ from ..types.thread_status_response_out import ThreadStatusResponseOut
8
+ from .raw_client import AsyncRawThreadsClient, RawThreadsClient
9
+
10
+
11
+ class ThreadsClient:
12
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
13
+ self._raw_client = RawThreadsClient(client_wrapper=client_wrapper)
14
+
15
+ @property
16
+ def with_raw_response(self) -> RawThreadsClient:
17
+ """
18
+ Retrieves a raw implementation of this client that returns raw responses.
19
+
20
+ Returns
21
+ -------
22
+ RawThreadsClient
23
+ """
24
+ return self._raw_client
25
+
26
+ def get_status(
27
+ self, thread_id: str, *, request_options: typing.Optional[RequestOptions] = None
28
+ ) -> ThreadStatusResponseOut:
29
+ """
30
+ Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
31
+
32
+ Parameters
33
+ ----------
34
+ thread_id : str
35
+ The unique thread ID to check status for
36
+
37
+ request_options : typing.Optional[RequestOptions]
38
+ Request-specific configuration.
39
+
40
+ Returns
41
+ -------
42
+ ThreadStatusResponseOut
43
+ Thread status retrieved successfully
44
+
45
+ Examples
46
+ --------
47
+ from athena import Athena
48
+
49
+ client = Athena(
50
+ api_key="YOUR_API_KEY",
51
+ )
52
+ client.threads.get_status(
53
+ thread_id="thread_id",
54
+ )
55
+ """
56
+ _response = self._raw_client.get_status(thread_id, request_options=request_options)
57
+ return _response.data
58
+
59
+
60
+ class AsyncThreadsClient:
61
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
62
+ self._raw_client = AsyncRawThreadsClient(client_wrapper=client_wrapper)
63
+
64
+ @property
65
+ def with_raw_response(self) -> AsyncRawThreadsClient:
66
+ """
67
+ Retrieves a raw implementation of this client that returns raw responses.
68
+
69
+ Returns
70
+ -------
71
+ AsyncRawThreadsClient
72
+ """
73
+ return self._raw_client
74
+
75
+ async def get_status(
76
+ self, thread_id: str, *, request_options: typing.Optional[RequestOptions] = None
77
+ ) -> ThreadStatusResponseOut:
78
+ """
79
+ Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
80
+
81
+ Parameters
82
+ ----------
83
+ thread_id : str
84
+ The unique thread ID to check status for
85
+
86
+ request_options : typing.Optional[RequestOptions]
87
+ Request-specific configuration.
88
+
89
+ Returns
90
+ -------
91
+ ThreadStatusResponseOut
92
+ Thread status retrieved successfully
93
+
94
+ Examples
95
+ --------
96
+ import asyncio
97
+
98
+ from athena import AsyncAthena
99
+
100
+ client = AsyncAthena(
101
+ api_key="YOUR_API_KEY",
102
+ )
103
+
104
+
105
+ async def main() -> None:
106
+ await client.threads.get_status(
107
+ thread_id="thread_id",
108
+ )
109
+
110
+
111
+ asyncio.run(main())
112
+ """
113
+ _response = await self._raw_client.get_status(thread_id, request_options=request_options)
114
+ return _response.data
@@ -0,0 +1,193 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+ from json.decoder import JSONDecodeError
5
+
6
+ from ..core.api_error import ApiError
7
+ from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8
+ from ..core.http_response import AsyncHttpResponse, HttpResponse
9
+ from ..core.jsonable_encoder import jsonable_encoder
10
+ from ..core.pydantic_utilities import parse_obj_as
11
+ from ..core.request_options import RequestOptions
12
+ from ..errors.internal_server_error import InternalServerError
13
+ from ..errors.not_found_error import NotFoundError
14
+ from ..errors.unauthorized_error import UnauthorizedError
15
+ from ..errors.unprocessable_entity_error import UnprocessableEntityError
16
+ from ..types.asset_not_found_error import AssetNotFoundError
17
+ from ..types.thread_status_response_out import ThreadStatusResponseOut
18
+
19
+
20
+ class RawThreadsClient:
21
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
22
+ self._client_wrapper = client_wrapper
23
+
24
+ def get_status(
25
+ self, thread_id: str, *, request_options: typing.Optional[RequestOptions] = None
26
+ ) -> HttpResponse[ThreadStatusResponseOut]:
27
+ """
28
+ Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
29
+
30
+ Parameters
31
+ ----------
32
+ thread_id : str
33
+ The unique thread ID to check status for
34
+
35
+ request_options : typing.Optional[RequestOptions]
36
+ Request-specific configuration.
37
+
38
+ Returns
39
+ -------
40
+ HttpResponse[ThreadStatusResponseOut]
41
+ Thread status retrieved successfully
42
+ """
43
+ _response = self._client_wrapper.httpx_client.request(
44
+ f"api/v0/threads/{jsonable_encoder(thread_id)}/status",
45
+ method="GET",
46
+ request_options=request_options,
47
+ )
48
+ try:
49
+ if 200 <= _response.status_code < 300:
50
+ _data = typing.cast(
51
+ ThreadStatusResponseOut,
52
+ parse_obj_as(
53
+ type_=ThreadStatusResponseOut, # type: ignore
54
+ object_=_response.json(),
55
+ ),
56
+ )
57
+ return HttpResponse(response=_response, data=_data)
58
+ if _response.status_code == 401:
59
+ raise UnauthorizedError(
60
+ headers=dict(_response.headers),
61
+ body=typing.cast(
62
+ typing.Optional[typing.Any],
63
+ parse_obj_as(
64
+ type_=typing.Optional[typing.Any], # type: ignore
65
+ object_=_response.json(),
66
+ ),
67
+ ),
68
+ )
69
+ if _response.status_code == 404:
70
+ raise NotFoundError(
71
+ headers=dict(_response.headers),
72
+ body=typing.cast(
73
+ AssetNotFoundError,
74
+ parse_obj_as(
75
+ type_=AssetNotFoundError, # type: ignore
76
+ object_=_response.json(),
77
+ ),
78
+ ),
79
+ )
80
+ if _response.status_code == 422:
81
+ raise UnprocessableEntityError(
82
+ headers=dict(_response.headers),
83
+ body=typing.cast(
84
+ typing.Optional[typing.Any],
85
+ parse_obj_as(
86
+ type_=typing.Optional[typing.Any], # type: ignore
87
+ object_=_response.json(),
88
+ ),
89
+ ),
90
+ )
91
+ if _response.status_code == 500:
92
+ raise InternalServerError(
93
+ headers=dict(_response.headers),
94
+ body=typing.cast(
95
+ typing.Optional[typing.Any],
96
+ parse_obj_as(
97
+ type_=typing.Optional[typing.Any], # type: ignore
98
+ object_=_response.json(),
99
+ ),
100
+ ),
101
+ )
102
+ _response_json = _response.json()
103
+ except JSONDecodeError:
104
+ raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
105
+ raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
106
+
107
+
108
+ class AsyncRawThreadsClient:
109
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
110
+ self._client_wrapper = client_wrapper
111
+
112
+ async def get_status(
113
+ self, thread_id: str, *, request_options: typing.Optional[RequestOptions] = None
114
+ ) -> AsyncHttpResponse[ThreadStatusResponseOut]:
115
+ """
116
+ Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
117
+
118
+ Parameters
119
+ ----------
120
+ thread_id : str
121
+ The unique thread ID to check status for
122
+
123
+ request_options : typing.Optional[RequestOptions]
124
+ Request-specific configuration.
125
+
126
+ Returns
127
+ -------
128
+ AsyncHttpResponse[ThreadStatusResponseOut]
129
+ Thread status retrieved successfully
130
+ """
131
+ _response = await self._client_wrapper.httpx_client.request(
132
+ f"api/v0/threads/{jsonable_encoder(thread_id)}/status",
133
+ method="GET",
134
+ request_options=request_options,
135
+ )
136
+ try:
137
+ if 200 <= _response.status_code < 300:
138
+ _data = typing.cast(
139
+ ThreadStatusResponseOut,
140
+ parse_obj_as(
141
+ type_=ThreadStatusResponseOut, # type: ignore
142
+ object_=_response.json(),
143
+ ),
144
+ )
145
+ return AsyncHttpResponse(response=_response, data=_data)
146
+ if _response.status_code == 401:
147
+ raise UnauthorizedError(
148
+ headers=dict(_response.headers),
149
+ body=typing.cast(
150
+ typing.Optional[typing.Any],
151
+ parse_obj_as(
152
+ type_=typing.Optional[typing.Any], # type: ignore
153
+ object_=_response.json(),
154
+ ),
155
+ ),
156
+ )
157
+ if _response.status_code == 404:
158
+ raise NotFoundError(
159
+ headers=dict(_response.headers),
160
+ body=typing.cast(
161
+ AssetNotFoundError,
162
+ parse_obj_as(
163
+ type_=AssetNotFoundError, # type: ignore
164
+ object_=_response.json(),
165
+ ),
166
+ ),
167
+ )
168
+ if _response.status_code == 422:
169
+ raise UnprocessableEntityError(
170
+ headers=dict(_response.headers),
171
+ body=typing.cast(
172
+ typing.Optional[typing.Any],
173
+ parse_obj_as(
174
+ type_=typing.Optional[typing.Any], # type: ignore
175
+ object_=_response.json(),
176
+ ),
177
+ ),
178
+ )
179
+ if _response.status_code == 500:
180
+ raise InternalServerError(
181
+ headers=dict(_response.headers),
182
+ body=typing.cast(
183
+ typing.Optional[typing.Any],
184
+ parse_obj_as(
185
+ type_=typing.Optional[typing.Any], # type: ignore
186
+ object_=_response.json(),
187
+ ),
188
+ ),
189
+ )
190
+ _response_json = _response.json()
191
+ except JSONDecodeError:
192
+ raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
193
+ raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
athena/types/__init__.py CHANGED
@@ -14,6 +14,7 @@ from .chunk_content_item import ChunkContentItem, ChunkContentItem_ImageUrl, Chu
14
14
  from .chunk_result import ChunkResult
15
15
  from .chunk_result_chunk_id import ChunkResultChunkId
16
16
  from .content import Content
17
+ from .conversation_asset_info import ConversationAssetInfo
17
18
  from .create_new_sheet_tab_response import CreateNewSheetTabResponse
18
19
  from .custom_agent_response import CustomAgentResponse
19
20
  from .data_frame_request_out import DataFrameRequestOut
@@ -50,6 +51,7 @@ from .sheet_operation_response import SheetOperationResponse
50
51
  from .sql_agent_response import SqlAgentResponse
51
52
  from .structured_data_extractor_response import StructuredDataExtractorResponse
52
53
  from .text_content import TextContent
54
+ from .thread_status_response_out import ThreadStatusResponseOut
53
55
  from .type import Type
54
56
 
55
57
  __all__ = [
@@ -67,6 +69,7 @@ __all__ = [
67
69
  "ChunkResult",
68
70
  "ChunkResultChunkId",
69
71
  "Content",
72
+ "ConversationAssetInfo",
70
73
  "CreateNewSheetTabResponse",
71
74
  "CustomAgentResponse",
72
75
  "DataFrameRequestOut",
@@ -101,5 +104,6 @@ __all__ = [
101
104
  "SqlAgentResponse",
102
105
  "StructuredDataExtractorResponse",
103
106
  "TextContent",
107
+ "ThreadStatusResponseOut",
104
108
  "Type",
105
109
  ]
@@ -0,0 +1,105 @@
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 ConversationAssetInfo(UniversalBaseModel):
10
+ """
11
+ Conversation asset information associated with a thread.
12
+ """
13
+
14
+ agent: typing.Optional[str] = pydantic.Field(default=None)
15
+ """
16
+ Agent configuration used in conversation
17
+ """
18
+
19
+ athena_metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
20
+ """
21
+ Complete athena metadata for the conversation asset
22
+ """
23
+
24
+ conversation_asset_id: str = pydantic.Field()
25
+ """
26
+ ID of the conversation asset
27
+ """
28
+
29
+ created_at: str = pydantic.Field()
30
+ """
31
+ ISO timestamp when conversation was created
32
+ """
33
+
34
+ created_by: str = pydantic.Field()
35
+ """
36
+ User ID who created the conversation
37
+ """
38
+
39
+ last_channel: typing.Optional[str] = pydantic.Field(default=None)
40
+ """
41
+ Last active channel for the conversation
42
+ """
43
+
44
+ last_message: typing.Optional[str] = pydantic.Field(default=None)
45
+ """
46
+ Last message content
47
+ """
48
+
49
+ linked_aops: typing.Optional[typing.List[typing.Dict[str, typing.Optional[typing.Any]]]] = pydantic.Field(
50
+ default=None
51
+ )
52
+ """
53
+ List of linked AOP assets
54
+ """
55
+
56
+ linked_projects: typing.Optional[typing.List[typing.Dict[str, typing.Optional[typing.Any]]]] = pydantic.Field(
57
+ default=None
58
+ )
59
+ """
60
+ List of linked project assets
61
+ """
62
+
63
+ model: typing.Optional[str] = pydantic.Field(default=None)
64
+ """
65
+ Model used in conversation
66
+ """
67
+
68
+ num_messages: typing.Optional[int] = pydantic.Field(default=None)
69
+ """
70
+ Number of messages in the conversation
71
+ """
72
+
73
+ start_channel: typing.Optional[str] = pydantic.Field(default=None)
74
+ """
75
+ Channel where conversation was started
76
+ """
77
+
78
+ state: typing.Optional[str] = pydantic.Field(default=None)
79
+ """
80
+ Current state of the conversation (e.g., 'running', 'completed')
81
+ """
82
+
83
+ title: str = pydantic.Field()
84
+ """
85
+ Title of the conversation
86
+ """
87
+
88
+ updated_at: str = pydantic.Field()
89
+ """
90
+ ISO timestamp when conversation was last updated
91
+ """
92
+
93
+ workspace_id: str = pydantic.Field()
94
+ """
95
+ Workspace ID where conversation exists
96
+ """
97
+
98
+ if IS_PYDANTIC_V2:
99
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
100
+ else:
101
+
102
+ class Config:
103
+ frozen = True
104
+ smart_union = True
105
+ extra = pydantic.Extra.allow
@@ -0,0 +1,47 @@
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
+ from .conversation_asset_info import ConversationAssetInfo
8
+
9
+
10
+ class ThreadStatusResponseOut(UniversalBaseModel):
11
+ """
12
+ Response model for thread status check.
13
+ """
14
+
15
+ conversation_asset: typing.Optional[ConversationAssetInfo] = pydantic.Field(default=None)
16
+ """
17
+ Information about the associated conversation asset
18
+ """
19
+
20
+ created_at: str = pydantic.Field()
21
+ """
22
+ ISO timestamp when thread was created
23
+ """
24
+
25
+ status: str = pydantic.Field()
26
+ """
27
+ Current status of the thread (e.g., 'running', 'completed', 'failed')
28
+ """
29
+
30
+ thread_id: str = pydantic.Field()
31
+ """
32
+ The thread ID that was checked
33
+ """
34
+
35
+ updated_at: str = pydantic.Field()
36
+ """
37
+ ISO timestamp when thread was last updated
38
+ """
39
+
40
+ if IS_PYDANTIC_V2:
41
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
42
+ else:
43
+
44
+ class Config:
45
+ frozen = True
46
+ smart_union = True
47
+ extra = pydantic.Extra.allow
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.206
3
+ Version: 0.1.208
4
4
  Summary: Athena Intelligence Python Library
5
5
  Requires-Python: >=3.9,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,4 +1,4 @@
1
- athena/__init__.py,sha256=VXyrAkqUDbvUpdBa-A7lShZliUPwL00Q0brxX3cS_Hs,3597
1
+ athena/__init__.py,sha256=uYu0eT7L5Q3E6S2MxapA5hqgYRM9jL34MZ3ljdZhdBg,3737
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
@@ -20,11 +20,11 @@ athena/aop/raw_client.py,sha256=plXlJeQ4c9FgCh8cB8tr44kEPHaemm1H_akuDV9Xfms,1824
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
23
- athena/base_client.py,sha256=v0xO5KUQrRW8zlNSeyNWwv8r3Yc5bn3RzRWNTOeeGEY,6523
23
+ 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=dqKhczr0_51feNUY_BEluPn9c3UuXw9KNHiAphhwbUY,2392
27
+ athena/core/client_wrapper.py,sha256=3AoV7qagoR58QYjKJ7TOKNTnkz95wQULXsu4lJmftP4,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
@@ -51,6 +51,9 @@ athena/query/client.py,sha256=X4fBmmmawPaBEt9xWIuhoAcohPKmMadKzpgcEp22oYA,5692
51
51
  athena/query/raw_client.py,sha256=aD0CfHJrTZnEiIGwsk4ZSUIueKfDV9vdvMxsfBkvDWs,13701
52
52
  athena/query/types/__init__.py,sha256=O7bsrzp7vi-HiEiDq7X6dGcElLkCbWtyQ4wqP6Qdyp0,226
53
53
  athena/query/types/query_execute_request_database_asset_ids.py,sha256=aoVl5Xb34Q27hYGuVTnByGIxtHkL67wAwzXh7eJctew,154
54
+ athena/threads/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
55
+ athena/threads/client.py,sha256=gLjlEgLuEMduyPlK54GhGxWu6Vto-_TKFHcYcu9ZoiY,3328
56
+ athena/threads/raw_client.py,sha256=1-y1q2M5UyoIV6kuH-zkTGDKNdGUWMWUALsKJhtPPvE,8072
54
57
  athena/tools/__init__.py,sha256=Lq5sY-WpodI9cuRtzoJXXPiK7oQ-JAopxo2-M6ugJEU,326
55
58
  athena/tools/calendar/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
56
59
  athena/tools/calendar/client.py,sha256=NMiwSaBD-JYcAoudGyBMtWVIWPm6ChFqOFSndxYupY0,4385
@@ -71,7 +74,7 @@ athena/tools/tasks/client.py,sha256=c_YZ7OjQNJmPKbeeXJznXj3zo5CRFSv02dLupAdHAyo,
71
74
  athena/tools/tasks/raw_client.py,sha256=Mexzuf_HcRXWNlESDGQkHHv5tC2tAo-AX3PBSuSRO3U,3812
72
75
  athena/tools/types/__init__.py,sha256=ZI6REilQ0Xuocjd8iyNVfLvOsA2Ltlb8--px07wRSPg,217
73
76
  athena/tools/types/tools_data_frame_request_columns_item.py,sha256=GA1FUlTV_CfSc-KToTAwFf4Exl0rr4fsweVZupztjw0,138
74
- athena/types/__init__.py,sha256=Vip2IwctpaB5yqoT_iZ5djAL9leN-HeNV-0scuGjo9Y,4051
77
+ athena/types/__init__.py,sha256=P84dfrZwrzrFIka7jnJyadx4P8rQhhRtjT79CNSo3r4,4234
75
78
  athena/types/aop_async_execute_response_out.py,sha256=R3oy0RLyD-t4MQCnp3Ll13Ci3D5JUMhPyuetbhrONNs,1798
76
79
  athena/types/aop_execute_request_in.py,sha256=mEsMKyNN6e90gZra733lJDC6z0bZWdc72af3B-Z5aqE,889
77
80
  athena/types/aop_execute_response_out.py,sha256=sOaPWALEo5hWKSnoq_kXrHKtgqsJvgCWcOWpjCTtTCA,1816
@@ -84,6 +87,7 @@ athena/types/chunk_content_item.py,sha256=nKP8lq4AbbAZEKY7bRKOc7sDvqfyslCBCn8Cl_
84
87
  athena/types/chunk_result.py,sha256=hgrS4hMeuwTRpJ2YrMdrW_QWWWUQ82iYVVTuhFWm1X0,734
85
88
  athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
86
89
  athena/types/content.py,sha256=sSPPkZkHZgA_rO6UyTnR2QBK5mOqUz2pZ--B86r5584,211
90
+ athena/types/conversation_asset_info.py,sha256=dO-8_uTUtPZkkn5pS06LtUPW4d-HKtVFib15v-hpsuQ,2639
87
91
  athena/types/create_new_sheet_tab_response.py,sha256=RF8iOL3mkSc3pY0pqQhvw9IdnncxDC_-XdSUhqPODsM,892
88
92
  athena/types/custom_agent_response.py,sha256=hzw1s7mcCI9V58l5OqK4Q59AGF_NctSx5scjJeVWckk,684
89
93
  athena/types/data_frame_request_out.py,sha256=wyVIEEI6mqSoH6SyXTQpzLCJOWwsAlUvG9iAVlNuNOU,1076
@@ -116,8 +120,9 @@ athena/types/sheet_operation_response.py,sha256=w-Nl11a1kii-RHTzgrt9QjpN1nuWfbF4
116
120
  athena/types/sql_agent_response.py,sha256=qp-VIpsZziEkx8EIF4bdhmlPqqH8a8GaCWLANJxE5kU,765
117
121
  athena/types/structured_data_extractor_response.py,sha256=yFQ0CiFDdlZIq2X8UprEAwOPhNBqG8lzVu9_aDySW2M,1067
118
122
  athena/types/text_content.py,sha256=tcVCPj3tHh5zQcTElr2tdCIjjfx3ZI63rKIlaG8vo64,592
123
+ athena/types/thread_status_response_out.py,sha256=UuSAvs9woL1i8RwvVRKsFUufN4A9jO3jsV47YMckvQU,1219
119
124
  athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
120
125
  athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
121
- athena_intelligence-0.1.206.dist-info/METADATA,sha256=ykCBrbxiKQRR0km5z5F8niW4u9pgGtlqxgYYUoGyJoI,5440
122
- athena_intelligence-0.1.206.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
123
- athena_intelligence-0.1.206.dist-info/RECORD,,
126
+ athena_intelligence-0.1.208.dist-info/METADATA,sha256=lOmJcWqol8cFQPJ-jPSdtViesCwur6Sn1a0KOlpgl4A,5440
127
+ athena_intelligence-0.1.208.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
128
+ athena_intelligence-0.1.208.dist-info/RECORD,,