athena-intelligence 0.1.34__py3-none-any.whl → 0.1.36__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 CHANGED
@@ -13,11 +13,12 @@ from .types import (
13
13
  SqlResults,
14
14
  StatusEnum,
15
15
  Tools,
16
+ UrlResult,
16
17
  ValidationError,
17
18
  ValidationErrorLocItem,
18
19
  )
19
20
  from .errors import UnprocessableEntityError
20
- from . import dataset, message, query, report, snippet
21
+ from . import dataset, message, query, report, search, snippet
21
22
  from .environment import AthenaEnvironment
22
23
 
23
24
  __all__ = [
@@ -35,11 +36,13 @@ __all__ = [
35
36
  "StatusEnum",
36
37
  "Tools",
37
38
  "UnprocessableEntityError",
39
+ "UrlResult",
38
40
  "ValidationError",
39
41
  "ValidationErrorLocItem",
40
42
  "dataset",
41
43
  "message",
42
44
  "query",
43
45
  "report",
46
+ "search",
44
47
  "snippet",
45
48
  ]
athena/base_client.py CHANGED
@@ -10,6 +10,7 @@ from .environment import AthenaEnvironment
10
10
  from .message.client import AsyncMessageClient, MessageClient
11
11
  from .query.client import AsyncQueryClient, QueryClient
12
12
  from .report.client import AsyncReportClient, ReportClient
13
+ from .search.client import AsyncSearchClient, SearchClient
13
14
  from .snippet.client import AsyncSnippetClient, SnippetClient
14
15
 
15
16
 
@@ -56,6 +57,7 @@ class BaseAthena:
56
57
  self.snippet = SnippetClient(client_wrapper=self._client_wrapper)
57
58
  self.report = ReportClient(client_wrapper=self._client_wrapper)
58
59
  self.query = QueryClient(client_wrapper=self._client_wrapper)
60
+ self.search = SearchClient(client_wrapper=self._client_wrapper)
59
61
 
60
62
 
61
63
  class AsyncBaseAthena:
@@ -101,6 +103,7 @@ class AsyncBaseAthena:
101
103
  self.snippet = AsyncSnippetClient(client_wrapper=self._client_wrapper)
102
104
  self.report = AsyncReportClient(client_wrapper=self._client_wrapper)
103
105
  self.query = AsyncQueryClient(client_wrapper=self._client_wrapper)
106
+ self.search = AsyncSearchClient(client_wrapper=self._client_wrapper)
104
107
 
105
108
 
106
109
  def _get_base_url(*, base_url: typing.Optional[str] = None, environment: AthenaEnvironment) -> str:
@@ -16,7 +16,7 @@ class BaseClientWrapper:
16
16
  headers: typing.Dict[str, str] = {
17
17
  "X-Fern-Language": "Python",
18
18
  "X-Fern-SDK-Name": "athena-intelligence",
19
- "X-Fern-SDK-Version": "0.1.34",
19
+ "X-Fern-SDK-Version": "0.1.36",
20
20
  }
21
21
  headers["X-API-KEY"] = self.api_key
22
22
  return headers
@@ -0,0 +1,2 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
@@ -0,0 +1,298 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+ import urllib.parse
5
+ from json.decoder import JSONDecodeError
6
+
7
+ from ..core.api_error import ApiError
8
+ from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
9
+ from ..core.jsonable_encoder import jsonable_encoder
10
+ from ..core.remove_none_from_dict import remove_none_from_dict
11
+ from ..core.request_options import RequestOptions
12
+ from ..errors.unprocessable_entity_error import UnprocessableEntityError
13
+ from ..types.http_validation_error import HttpValidationError
14
+ from ..types.url_result import UrlResult
15
+
16
+ try:
17
+ import pydantic.v1 as pydantic # type: ignore
18
+ except ImportError:
19
+ import pydantic # type: ignore
20
+
21
+ # this is used as the default value for optional parameters
22
+ OMIT = typing.cast(typing.Any, ...)
23
+
24
+
25
+ class SearchClient:
26
+ def __init__(self, *, client_wrapper: SyncClientWrapper):
27
+ self._client_wrapper = client_wrapper
28
+
29
+ def get_urls(
30
+ self,
31
+ *,
32
+ query: str,
33
+ num_urls: int,
34
+ tbs: str,
35
+ country_code: typing.Optional[str] = OMIT,
36
+ country_restrict: typing.Optional[str] = OMIT,
37
+ site: typing.Optional[str] = OMIT,
38
+ request_options: typing.Optional[RequestOptions] = None,
39
+ ) -> UrlResult:
40
+ """
41
+ Parameters:
42
+ - query: str.
43
+
44
+ - num_urls: int.
45
+
46
+ - tbs: str.
47
+
48
+ - country_code: typing.Optional[str].
49
+
50
+ - country_restrict: typing.Optional[str].
51
+
52
+ - site: typing.Optional[str].
53
+
54
+ - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
55
+ ---
56
+ from athena.client import Athena
57
+
58
+ client = Athena(
59
+ api_key="YOUR_API_KEY",
60
+ )
61
+ client.search.get_urls(
62
+ query="query",
63
+ num_urls=1,
64
+ tbs="tbs",
65
+ )
66
+ """
67
+ _request: typing.Dict[str, typing.Any] = {"query": query, "num_urls": num_urls, "tbs": tbs}
68
+ if country_code is not OMIT:
69
+ _request["country_code"] = country_code
70
+ if country_restrict is not OMIT:
71
+ _request["country_restrict"] = country_restrict
72
+ if site is not OMIT:
73
+ _request["site"] = site
74
+ _response = self._client_wrapper.httpx_client.request(
75
+ "POST",
76
+ urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v0/get-urls"),
77
+ params=jsonable_encoder(
78
+ request_options.get("additional_query_parameters") if request_options is not None else None
79
+ ),
80
+ json=jsonable_encoder(_request)
81
+ if request_options is None or request_options.get("additional_body_parameters") is None
82
+ else {
83
+ **jsonable_encoder(_request),
84
+ **(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
85
+ },
86
+ headers=jsonable_encoder(
87
+ remove_none_from_dict(
88
+ {
89
+ **self._client_wrapper.get_headers(),
90
+ **(request_options.get("additional_headers", {}) if request_options is not None else {}),
91
+ }
92
+ )
93
+ ),
94
+ timeout=request_options.get("timeout_in_seconds")
95
+ if request_options is not None and request_options.get("timeout_in_seconds") is not None
96
+ else 60,
97
+ retries=0,
98
+ max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
99
+ )
100
+ if 200 <= _response.status_code < 300:
101
+ return pydantic.parse_obj_as(UrlResult, _response.json()) # type: ignore
102
+ if _response.status_code == 422:
103
+ raise UnprocessableEntityError(pydantic.parse_obj_as(HttpValidationError, _response.json())) # type: ignore
104
+ try:
105
+ _response_json = _response.json()
106
+ except JSONDecodeError:
107
+ raise ApiError(status_code=_response.status_code, body=_response.text)
108
+ raise ApiError(status_code=_response.status_code, body=_response_json)
109
+
110
+ def get_markdown(self, *, url: str, request_options: typing.Optional[RequestOptions] = None) -> UrlResult:
111
+ """
112
+ Parameters:
113
+ - url: str.
114
+
115
+ - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
116
+ ---
117
+ from athena.client import Athena
118
+
119
+ client = Athena(
120
+ api_key="YOUR_API_KEY",
121
+ )
122
+ client.search.get_markdown(
123
+ url="url",
124
+ )
125
+ """
126
+ _response = self._client_wrapper.httpx_client.request(
127
+ "POST",
128
+ urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v0/get-markdown"),
129
+ params=jsonable_encoder(
130
+ request_options.get("additional_query_parameters") if request_options is not None else None
131
+ ),
132
+ json=jsonable_encoder({"url": url})
133
+ if request_options is None or request_options.get("additional_body_parameters") is None
134
+ else {
135
+ **jsonable_encoder({"url": url}),
136
+ **(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
137
+ },
138
+ headers=jsonable_encoder(
139
+ remove_none_from_dict(
140
+ {
141
+ **self._client_wrapper.get_headers(),
142
+ **(request_options.get("additional_headers", {}) if request_options is not None else {}),
143
+ }
144
+ )
145
+ ),
146
+ timeout=request_options.get("timeout_in_seconds")
147
+ if request_options is not None and request_options.get("timeout_in_seconds") is not None
148
+ else 60,
149
+ retries=0,
150
+ max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
151
+ )
152
+ if 200 <= _response.status_code < 300:
153
+ return pydantic.parse_obj_as(UrlResult, _response.json()) # type: ignore
154
+ if _response.status_code == 422:
155
+ raise UnprocessableEntityError(pydantic.parse_obj_as(HttpValidationError, _response.json())) # type: ignore
156
+ try:
157
+ _response_json = _response.json()
158
+ except JSONDecodeError:
159
+ raise ApiError(status_code=_response.status_code, body=_response.text)
160
+ raise ApiError(status_code=_response.status_code, body=_response_json)
161
+
162
+
163
+ class AsyncSearchClient:
164
+ def __init__(self, *, client_wrapper: AsyncClientWrapper):
165
+ self._client_wrapper = client_wrapper
166
+
167
+ async def get_urls(
168
+ self,
169
+ *,
170
+ query: str,
171
+ num_urls: int,
172
+ tbs: str,
173
+ country_code: typing.Optional[str] = OMIT,
174
+ country_restrict: typing.Optional[str] = OMIT,
175
+ site: typing.Optional[str] = OMIT,
176
+ request_options: typing.Optional[RequestOptions] = None,
177
+ ) -> UrlResult:
178
+ """
179
+ Parameters:
180
+ - query: str.
181
+
182
+ - num_urls: int.
183
+
184
+ - tbs: str.
185
+
186
+ - country_code: typing.Optional[str].
187
+
188
+ - country_restrict: typing.Optional[str].
189
+
190
+ - site: typing.Optional[str].
191
+
192
+ - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
193
+ ---
194
+ from athena.client import AsyncAthena
195
+
196
+ client = AsyncAthena(
197
+ api_key="YOUR_API_KEY",
198
+ )
199
+ await client.search.get_urls(
200
+ query="query",
201
+ num_urls=1,
202
+ tbs="tbs",
203
+ )
204
+ """
205
+ _request: typing.Dict[str, typing.Any] = {"query": query, "num_urls": num_urls, "tbs": tbs}
206
+ if country_code is not OMIT:
207
+ _request["country_code"] = country_code
208
+ if country_restrict is not OMIT:
209
+ _request["country_restrict"] = country_restrict
210
+ if site is not OMIT:
211
+ _request["site"] = site
212
+ _response = await self._client_wrapper.httpx_client.request(
213
+ "POST",
214
+ urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v0/get-urls"),
215
+ params=jsonable_encoder(
216
+ request_options.get("additional_query_parameters") if request_options is not None else None
217
+ ),
218
+ json=jsonable_encoder(_request)
219
+ if request_options is None or request_options.get("additional_body_parameters") is None
220
+ else {
221
+ **jsonable_encoder(_request),
222
+ **(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
223
+ },
224
+ headers=jsonable_encoder(
225
+ remove_none_from_dict(
226
+ {
227
+ **self._client_wrapper.get_headers(),
228
+ **(request_options.get("additional_headers", {}) if request_options is not None else {}),
229
+ }
230
+ )
231
+ ),
232
+ timeout=request_options.get("timeout_in_seconds")
233
+ if request_options is not None and request_options.get("timeout_in_seconds") is not None
234
+ else 60,
235
+ retries=0,
236
+ max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
237
+ )
238
+ if 200 <= _response.status_code < 300:
239
+ return pydantic.parse_obj_as(UrlResult, _response.json()) # type: ignore
240
+ if _response.status_code == 422:
241
+ raise UnprocessableEntityError(pydantic.parse_obj_as(HttpValidationError, _response.json())) # type: ignore
242
+ try:
243
+ _response_json = _response.json()
244
+ except JSONDecodeError:
245
+ raise ApiError(status_code=_response.status_code, body=_response.text)
246
+ raise ApiError(status_code=_response.status_code, body=_response_json)
247
+
248
+ async def get_markdown(self, *, url: str, request_options: typing.Optional[RequestOptions] = None) -> UrlResult:
249
+ """
250
+ Parameters:
251
+ - url: str.
252
+
253
+ - request_options: typing.Optional[RequestOptions]. Request-specific configuration.
254
+ ---
255
+ from athena.client import AsyncAthena
256
+
257
+ client = AsyncAthena(
258
+ api_key="YOUR_API_KEY",
259
+ )
260
+ await client.search.get_markdown(
261
+ url="url",
262
+ )
263
+ """
264
+ _response = await self._client_wrapper.httpx_client.request(
265
+ "POST",
266
+ urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v0/get-markdown"),
267
+ params=jsonable_encoder(
268
+ request_options.get("additional_query_parameters") if request_options is not None else None
269
+ ),
270
+ json=jsonable_encoder({"url": url})
271
+ if request_options is None or request_options.get("additional_body_parameters") is None
272
+ else {
273
+ **jsonable_encoder({"url": url}),
274
+ **(jsonable_encoder(remove_none_from_dict(request_options.get("additional_body_parameters", {})))),
275
+ },
276
+ headers=jsonable_encoder(
277
+ remove_none_from_dict(
278
+ {
279
+ **self._client_wrapper.get_headers(),
280
+ **(request_options.get("additional_headers", {}) if request_options is not None else {}),
281
+ }
282
+ )
283
+ ),
284
+ timeout=request_options.get("timeout_in_seconds")
285
+ if request_options is not None and request_options.get("timeout_in_seconds") is not None
286
+ else 60,
287
+ retries=0,
288
+ max_retries=request_options.get("max_retries") if request_options is not None else 0, # type: ignore
289
+ )
290
+ if 200 <= _response.status_code < 300:
291
+ return pydantic.parse_obj_as(UrlResult, _response.json()) # type: ignore
292
+ if _response.status_code == 422:
293
+ raise UnprocessableEntityError(pydantic.parse_obj_as(HttpValidationError, _response.json())) # type: ignore
294
+ try:
295
+ _response_json = _response.json()
296
+ except JSONDecodeError:
297
+ raise ApiError(status_code=_response.status_code, body=_response.text)
298
+ raise ApiError(status_code=_response.status_code, body=_response_json)
athena/types/__init__.py CHANGED
@@ -12,6 +12,7 @@ from .snippet import Snippet
12
12
  from .sql_results import SqlResults
13
13
  from .status_enum import StatusEnum
14
14
  from .tools import Tools
15
+ from .url_result import UrlResult
15
16
  from .validation_error import ValidationError
16
17
  from .validation_error_loc_item import ValidationErrorLocItem
17
18
 
@@ -28,6 +29,7 @@ __all__ = [
28
29
  "SqlResults",
29
30
  "StatusEnum",
30
31
  "Tools",
32
+ "UrlResult",
31
33
  "ValidationError",
32
34
  "ValidationErrorLocItem",
33
35
  ]
athena/types/model.py CHANGED
@@ -12,6 +12,7 @@ class Model(str, enum.Enum):
12
12
  """
13
13
 
14
14
  GPT_35_TURBO = "gpt-3.5-turbo"
15
+ GPT_4_TURBO = "gpt-4-turbo"
15
16
  GPT_4_TURBO_PREVIEW = "gpt-4-turbo-preview"
16
17
  GPT_4 = "gpt-4"
17
18
  MIXTRAL_SMALL_8_X_7_B_0211 = "mixtral-small-8x7b-0211"
@@ -26,6 +27,7 @@ class Model(str, enum.Enum):
26
27
  def visit(
27
28
  self,
28
29
  gpt_35_turbo: typing.Callable[[], T_Result],
30
+ gpt_4_turbo: typing.Callable[[], T_Result],
29
31
  gpt_4_turbo_preview: typing.Callable[[], T_Result],
30
32
  gpt_4: typing.Callable[[], T_Result],
31
33
  mixtral_small_8_x_7_b_0211: typing.Callable[[], T_Result],
@@ -39,6 +41,8 @@ class Model(str, enum.Enum):
39
41
  ) -> T_Result:
40
42
  if self is Model.GPT_35_TURBO:
41
43
  return gpt_35_turbo()
44
+ if self is Model.GPT_4_TURBO:
45
+ return gpt_4_turbo()
42
46
  if self is Model.GPT_4_TURBO_PREVIEW:
43
47
  return gpt_4_turbo_preview()
44
48
  if self is Model.GPT_4:
@@ -0,0 +1,28 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic.v1 as pydantic # type: ignore
10
+ except ImportError:
11
+ import pydantic # type: ignore
12
+
13
+
14
+ class UrlResult(pydantic.BaseModel):
15
+ result: typing.Dict[str, typing.Any]
16
+
17
+ def json(self, **kwargs: typing.Any) -> str:
18
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
19
+ return super().json(**kwargs_with_defaults)
20
+
21
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
22
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
23
+ return super().dict(**kwargs_with_defaults)
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.34
3
+ Version: 0.1.36
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,9 +1,9 @@
1
- athena/__init__.py,sha256=4RuWc8gnEeHlx2a1UgTIa5LtJijTa_akpD-1AIxDRz0,905
2
- athena/base_client.py,sha256=0V7k8HeQrYl1dK2lni53I0EkrmMwFiTVW5Pdt-fScuE,4806
1
+ athena/__init__.py,sha256=Ken_0fSDdwI4gxtyMOSjlyrXf_nhAOXVa3U2qYLwILQ,959
2
+ athena/base_client.py,sha256=9CD18sBT5meilMnX4WfnNBagwlyNWnc8NH0bSL9D0Ao,5014
3
3
  athena/client.py,sha256=8QypiDlbZ0C1YsJh6GzhylLVCZXDQc1MCJTURo2_vvI,3576
4
4
  athena/core/__init__.py,sha256=RWfyDqkzWsf8e3VGc3NV60MovfJbg5XWzNFGB2DZ0hA,790
5
5
  athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
6
- athena/core/client_wrapper.py,sha256=p4qZ38TkBIJKhJv5R9zpE725iyppnzPAG9JRuwsaAqg,1198
6
+ athena/core/client_wrapper.py,sha256=PD-ERfihrCy-m8nXlr0HpwBfDSxxIErhO_yqaa7ZAV4,1198
7
7
  athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
8
8
  athena/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
9
9
  athena/core/http_client.py,sha256=LI0yP3jUyE0Ue7oyBcI9nyo1pljOwh9Y5ycTeIpKwOg,4882
@@ -23,23 +23,26 @@ athena/query/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
23
23
  athena/query/client.py,sha256=UOx-Bq-xFFm-sTMTmJjWGrC6q_7vhVno3nYzmi81xwI,6243
24
24
  athena/report/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
25
25
  athena/report/client.py,sha256=sGJDrgk_E1SPleRYNhvspmsz-G3FQwMW-3alFzZPquE,6528
26
+ athena/search/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
+ athena/search/client.py,sha256=9df4hIjyqdRY7PzJ65KUvXIZDn5azTJH284D67fjX9Q,12255
26
28
  athena/snippet/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
29
  athena/snippet/client.py,sha256=D0rSpm6ql9cnUj-mMe3z8OHRgRQQuk3bBW2CZSRnyp4,6087
28
- athena/types/__init__.py,sha256=kSz8xv8p-5znJI-sg3b6yD0E0bi9pkI1J8F60D5hu78,918
30
+ athena/types/__init__.py,sha256=2z-SK2ERUpQf5i3z1sDlHD1jxfLBlDZZ1kzT-BcDBlI,969
29
31
  athena/types/dataset.py,sha256=70OJPxKBAYu7xthGEgrUolSdyLqiyh6X49INw1oN0sA,1014
30
32
  athena/types/get_datasets_response.py,sha256=BCdT8yTLfOsXeyFadlyoas4zzseFWGPAdGpkgkOuaD8,989
31
33
  athena/types/get_snippets_response.py,sha256=Lpn7bHJLpPQozN93unCV-8eByAAfz1MhQWR3G3Z1vl4,989
32
34
  athena/types/http_validation_error.py,sha256=Fcv_CTMMrLvCeTHjF0n5xf5tskMDgt-J6H9gp654eQw,973
33
35
  athena/types/message_out.py,sha256=uvZY_Podv2XccEk8CICug9I_S2hFJTSzCBwcHiauW7A,865
34
36
  athena/types/message_out_dto.py,sha256=qgRibRbDNOWVnVGP7Rribh9WdoCT2CSiPUXeIWECqq4,1051
35
- athena/types/model.py,sha256=w-JHrWXHgMpCtrptPzeHgG8fu9Hle-QmmLP4RG6dCdc,2390
37
+ athena/types/model.py,sha256=XbXkKXbmnfZ8bPTAn1xnWGjqKK1SVOLdxf1RGk5ON5k,2545
36
38
  athena/types/report.py,sha256=QVaqVfHMAV3s9_V2CqjIEMcRrbJhD8zmi82vrk2A8x0,946
37
39
  athena/types/snippet.py,sha256=POIVJNV9iQxiVegB_qwQx-PZPPSyoIPhyxTsueNVUGA,1126
38
40
  athena/types/sql_results.py,sha256=pNH32nyf1bzoYJs3FgHctLdLO02oOjyGgLkHACACB6k,900
39
41
  athena/types/status_enum.py,sha256=0UZbhdAx215GHC-U53RS98mYHtn1N3On4VBe4j02Qtc,672
40
42
  athena/types/tools.py,sha256=mhRkKAwlsDud-fFOhsx2T3hBD-FAtuCnGHyU9cLPcGU,1422
43
+ athena/types/url_result.py,sha256=zajsW46qJnD6GPimb5kHkUncjqBfzHUlGOcKuUGMX-E,893
41
44
  athena/types/validation_error.py,sha256=2JhGNJouo8QpfrMBoT_JCwYSn1nFN2Nnq0p9uPLDH-U,992
42
45
  athena/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
43
- athena_intelligence-0.1.34.dist-info/METADATA,sha256=nsPsUdf_YFH5Uuk6nEJXJ7zJK4BJJuztP6m4matyS7c,4738
44
- athena_intelligence-0.1.34.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
45
- athena_intelligence-0.1.34.dist-info/RECORD,,
46
+ athena_intelligence-0.1.36.dist-info/METADATA,sha256=MJplpmKCNvDRG97WaD5JgBU19I7notidyX-jEHaz4ns,4738
47
+ athena_intelligence-0.1.36.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
48
+ athena_intelligence-0.1.36.dist-info/RECORD,,