athena-intelligence 0.1.125__py3-none-any.whl → 0.1.127__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.
Files changed (61) hide show
  1. athena/__init__.py +7 -0
  2. athena/agents/client.py +88 -36
  3. athena/agents/drive/client.py +80 -32
  4. athena/agents/general/client.py +222 -91
  5. athena/agents/research/client.py +80 -32
  6. athena/agents/sql/client.py +80 -32
  7. athena/base_client.py +13 -11
  8. athena/client.py +161 -61
  9. athena/core/__init__.py +21 -4
  10. athena/core/client_wrapper.py +9 -10
  11. athena/core/file.py +37 -8
  12. athena/core/http_client.py +97 -41
  13. athena/core/jsonable_encoder.py +33 -31
  14. athena/core/pydantic_utilities.py +272 -4
  15. athena/core/query_encoder.py +38 -13
  16. athena/core/request_options.py +5 -2
  17. athena/core/serialization.py +272 -0
  18. athena/errors/internal_server_error.py +2 -3
  19. athena/errors/unauthorized_error.py +2 -3
  20. athena/errors/unprocessable_entity_error.py +2 -3
  21. athena/query/client.py +208 -58
  22. athena/tools/calendar/client.py +82 -30
  23. athena/tools/client.py +956 -188
  24. athena/tools/email/client.py +117 -43
  25. athena/tools/structured_data_extractor/client.py +118 -67
  26. athena/tools/tasks/client.py +41 -17
  27. athena/types/__init__.py +4 -0
  28. athena/types/asset_content_request_out.py +26 -0
  29. athena/types/asset_node.py +14 -24
  30. athena/types/asset_not_found_error.py +11 -21
  31. athena/types/asset_screenshot_response_out.py +43 -0
  32. athena/types/chunk.py +11 -21
  33. athena/types/chunk_content_item.py +21 -41
  34. athena/types/chunk_result.py +13 -23
  35. athena/types/custom_agent_response.py +12 -22
  36. athena/types/data_frame_request_out.py +11 -21
  37. athena/types/data_frame_unknown_format_error.py +11 -21
  38. athena/types/document_chunk.py +12 -22
  39. athena/types/drive_agent_response.py +12 -22
  40. athena/types/file_chunk_request_out.py +11 -21
  41. athena/types/file_too_large_error.py +11 -21
  42. athena/types/folder_response.py +11 -21
  43. athena/types/general_agent_config.py +12 -21
  44. athena/types/general_agent_config_enabled_tools_item.py +0 -1
  45. athena/types/general_agent_request.py +13 -23
  46. athena/types/general_agent_response.py +12 -22
  47. athena/types/image_url_content.py +11 -21
  48. athena/types/parent_folder_error.py +11 -21
  49. athena/types/prompt_message.py +12 -22
  50. athena/types/research_agent_response.py +12 -22
  51. athena/types/save_asset_request_out.py +11 -21
  52. athena/types/sql_agent_response.py +13 -23
  53. athena/types/structured_data_extractor_response.py +15 -25
  54. athena/types/text_content.py +11 -21
  55. athena/types/tool.py +1 -13
  56. athena/types/type.py +1 -21
  57. athena/version.py +0 -1
  58. {athena_intelligence-0.1.125.dist-info → athena_intelligence-0.1.127.dist-info}/METADATA +12 -4
  59. athena_intelligence-0.1.127.dist-info/RECORD +89 -0
  60. {athena_intelligence-0.1.125.dist-info → athena_intelligence-0.1.127.dist-info}/WHEEL +1 -1
  61. athena_intelligence-0.1.125.dist-info/RECORD +0 -86
@@ -1,37 +1,27 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- import datetime as dt
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
4
  import typing
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
5
7
 
6
- from ..core.datetime_utils import serialize_datetime
7
- from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
8
8
 
9
-
10
- class SqlAgentResponse(pydantic_v1.BaseModel):
11
- metadata: typing.Dict[str, typing.Any] = pydantic_v1.Field()
9
+ class SqlAgentResponse(UniversalBaseModel):
10
+ metadata: typing.Dict[str, typing.Optional[typing.Any]] = pydantic.Field()
12
11
  """
13
12
  Additional metadata about the generated query
14
13
  """
15
14
 
16
- query_asset_id: str = pydantic_v1.Field()
15
+ query_asset_id: str = pydantic.Field()
17
16
  """
18
17
  The asset ID of the generated SQL query object
19
18
  """
20
19
 
21
- def json(self, **kwargs: typing.Any) -> str:
22
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
23
- return super().json(**kwargs_with_defaults)
24
-
25
- def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
26
- kwargs_with_defaults_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
27
- kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
28
-
29
- return deep_union_pydantic_dicts(
30
- super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
31
- )
20
+ if IS_PYDANTIC_V2:
21
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
22
+ else:
32
23
 
33
- class Config:
34
- frozen = True
35
- smart_union = True
36
- extra = pydantic_v1.Extra.allow
37
- json_encoders = {dt.datetime: serialize_datetime}
24
+ class Config:
25
+ frozen = True
26
+ smart_union = True
27
+ extra = pydantic.Extra.allow
@@ -1,42 +1,32 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- import datetime as dt
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
4
  import typing
5
-
6
- from ..core.datetime_utils import serialize_datetime
7
- from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
8
5
  from .chunk_result import ChunkResult
6
+ import pydantic
7
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
9
8
 
10
9
 
11
- class StructuredDataExtractorResponse(pydantic_v1.BaseModel):
10
+ class StructuredDataExtractorResponse(UniversalBaseModel):
12
11
  """
13
12
  The agent's response.
14
13
  """
15
14
 
16
- chunk_by_chunk_data: typing.Optional[typing.List[ChunkResult]] = pydantic_v1.Field(default=None)
15
+ chunk_by_chunk_data: typing.Optional[typing.List[ChunkResult]] = pydantic.Field(default=None)
17
16
  """
18
- The extracted structured data for each chunk. A list where each element is guaranteed to match `json_schema`.
17
+ The extracted structured data for each chunk. A list where each element is guaranteed to match `json_schema`.
19
18
  """
20
19
 
21
- reduced_data: typing.Optional[typing.Dict[str, typing.Any]] = pydantic_v1.Field(default=None)
20
+ reduced_data: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
22
21
  """
23
- If reduce is True, the reduced structured data, otherwise null. Guaranteed to match `json_schema`.
22
+ If reduce is True, the reduced structured data, otherwise null. Guaranteed to match `json_schema`.
24
23
  """
25
24
 
26
- def json(self, **kwargs: typing.Any) -> str:
27
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
28
- return super().json(**kwargs_with_defaults)
29
-
30
- def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
31
- kwargs_with_defaults_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
32
- kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
33
-
34
- return deep_union_pydantic_dicts(
35
- super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
36
- )
25
+ if IS_PYDANTIC_V2:
26
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
27
+ else:
37
28
 
38
- class Config:
39
- frozen = True
40
- smart_union = True
41
- extra = pydantic_v1.Extra.allow
42
- json_encoders = {dt.datetime: serialize_datetime}
29
+ class Config:
30
+ frozen = True
31
+ smart_union = True
32
+ extra = pydantic.Extra.allow
@@ -1,33 +1,23 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- import datetime as dt
3
+ from ..core.pydantic_utilities import UniversalBaseModel
4
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
4
5
  import typing
6
+ import pydantic
5
7
 
6
- from ..core.datetime_utils import serialize_datetime
7
- from ..core.pydantic_utilities import deep_union_pydantic_dicts, pydantic_v1
8
8
 
9
-
10
- class TextContent(pydantic_v1.BaseModel):
9
+ class TextContent(UniversalBaseModel):
11
10
  """
12
11
  A text content item in a multimodal message content.
13
12
  """
14
13
 
15
14
  text: str
16
15
 
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_exclude_unset: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
23
- kwargs_with_defaults_exclude_none: typing.Any = {"by_alias": True, "exclude_none": True, **kwargs}
24
-
25
- return deep_union_pydantic_dicts(
26
- super().dict(**kwargs_with_defaults_exclude_unset), super().dict(**kwargs_with_defaults_exclude_none)
27
- )
16
+ if IS_PYDANTIC_V2:
17
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
18
+ else:
28
19
 
29
- class Config:
30
- frozen = True
31
- smart_union = True
32
- extra = pydantic_v1.Extra.allow
33
- json_encoders = {dt.datetime: serialize_datetime}
20
+ class Config:
21
+ frozen = True
22
+ smart_union = True
23
+ extra = pydantic.Extra.allow
athena/types/tool.py CHANGED
@@ -1,17 +1,5 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- import enum
4
3
  import typing
5
4
 
6
- T_Result = typing.TypeVar("T_Result")
7
-
8
-
9
- class Tool(str, enum.Enum):
10
- SEARCH = "search"
11
- BROWSE = "browse"
12
-
13
- def visit(self, search: typing.Callable[[], T_Result], browse: typing.Callable[[], T_Result]) -> T_Result:
14
- if self is Tool.SEARCH:
15
- return search()
16
- if self is Tool.BROWSE:
17
- return browse()
5
+ Tool = typing.Union[typing.Literal["search", "browse"], typing.Any]
athena/types/type.py CHANGED
@@ -1,25 +1,5 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- import enum
4
3
  import typing
5
4
 
6
- T_Result = typing.TypeVar("T_Result")
7
-
8
-
9
- class Type(str, enum.Enum):
10
- SYSTEM = "system"
11
- HUMAN = "human"
12
- USER = "user"
13
-
14
- def visit(
15
- self,
16
- system: typing.Callable[[], T_Result],
17
- human: typing.Callable[[], T_Result],
18
- user: typing.Callable[[], T_Result],
19
- ) -> T_Result:
20
- if self is Type.SYSTEM:
21
- return system()
22
- if self is Type.HUMAN:
23
- return human()
24
- if self is Type.USER:
25
- return user()
5
+ Type = typing.Union[typing.Literal["system", "human", "user"], typing.Any]
athena/version.py CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  from importlib import metadata
3
2
 
4
3
  __version__ = metadata.version("athena-intelligence")
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: athena-intelligence
3
- Version: 0.1.125
3
+ Version: 0.1.127
4
4
  Summary: Athena Intelligence Python Library
5
- Requires-Python: >=3.8,<4.0
5
+ Requires-Python: >=3.9,<4.0
6
6
  Classifier: Intended Audience :: Developers
7
7
  Classifier: Operating System :: MacOS
8
8
  Classifier: Operating System :: Microsoft :: Windows
@@ -11,17 +11,25 @@ Classifier: Operating System :: POSIX
11
11
  Classifier: Operating System :: POSIX :: Linux
12
12
  Classifier: Programming Language :: Python
13
13
  Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.8
15
14
  Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
17
16
  Classifier: Programming Language :: Python :: 3.11
18
17
  Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.8
19
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
21
  Classifier: Typing :: Typed
22
+ Requires-Dist: fastapi (==0.115.10)
21
23
  Requires-Dist: httpx (>=0.21.2)
24
+ Requires-Dist: langchain_core (>=0.3.40,<0.4.0)
25
+ Requires-Dist: langserve (>=0.3.1,<0.4.0)
22
26
  Requires-Dist: pydantic (>=1.9.2)
27
+ Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
23
28
  Requires-Dist: python-magic (==0.4.27)
24
29
  Requires-Dist: typing_extensions (>=4.0.0)
30
+ Project-URL: Documentation, https://docs.athenaintel.com/
31
+ Project-URL: Homepage, https://www.athenaintel.com/
32
+ Project-URL: Repository, https://github.com/Athena-Intel/athena-python
25
33
  Description-Content-Type: text/markdown
26
34
 
27
35
  # Athena Intelligence Python Library
@@ -0,0 +1,89 @@
1
+ athena/__init__.py,sha256=k6crL7DF2yMvx3gO-9pG6gRqcRKlfBJDmEKjoy78mew,2735
2
+ athena/agents/__init__.py,sha256=I6MO2O_hb6KLa8oDHbGNSAhcPE-dsrX6LMcAEhsg3PQ,160
3
+ athena/agents/client.py,sha256=XmGr0T4OxtYtGJz6AT--fvJIYZk3_ir5ExJ4piiNESY,8231
4
+ athena/agents/drive/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
5
+ athena/agents/drive/client.py,sha256=n6DkEBgcUNrQCAgqndUecR-Mx7KIZrlDttJJdkma9U8,6131
6
+ athena/agents/general/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
7
+ athena/agents/general/client.py,sha256=YNXBraH9ta7WShQOx-R22Vm-X3mqYy7-sCKHOfOmT-k,17096
8
+ athena/agents/research/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
9
+ athena/agents/research/client.py,sha256=EIALgC-dktlwF6hYCC6OvPX-emqPcsaqpSDDF4osyKs,6155
10
+ athena/agents/sql/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
11
+ athena/agents/sql/client.py,sha256=8vKJ8WCX19i0REPvbOJYz3Je3zaeRke5HERC1ke3x2s,6167
12
+ athena/base_client.py,sha256=OEAbMJ3P-oKOVA_rcH8TG5-AtYbUAhhoWkKuDmVbobk,5741
13
+ athena/client.py,sha256=NMsu_BG8aiP76PyhplaE_bK36mu77Y_7vkW2nlNDewY,22143
14
+ athena/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
15
+ athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
16
+ athena/core/client_wrapper.py,sha256=qTToz8w8XQFv65Je4vyj0sdsY_hd2_4aHgECzgR2_U4,1816
17
+ athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
18
+ athena/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
19
+ athena/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
20
+ athena/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
21
+ athena/core/pydantic_utilities.py,sha256=UibVGGYmBDsV834x8CtckRDrTIL4lYJPMrcq9yvf7RM,11973
22
+ athena/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
23
+ athena/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
24
+ athena/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
25
+ athena/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
26
+ athena/environment.py,sha256=_e7YwByXALEk7fNJNJvjF81caYTbsx4c7wwftCJHQ7g,214
27
+ athena/errors/__init__.py,sha256=WlRIo4aGYcnxtY2DtoWS5YzmaKQHFp4Uh3mXxrakU_c,655
28
+ athena/errors/bad_request_error.py,sha256=wfNVQgYe-5jsfeex-IBMrqn05oArDz0PT0ddj01S9aE,298
29
+ athena/errors/content_too_large_error.py,sha256=_Jacqup8-YwalVeCv6NWDo9bqZhByXoUaApAxfFc9tU,304
30
+ athena/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
31
+ athena/errors/not_found_error.py,sha256=fIMBz7ubqcX3HpLIoqmF7-kFCoN6-Uj1lW4OuBnaK6s,300
32
+ athena/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
33
+ athena/errors/unprocessable_entity_error.py,sha256=vd8X3DZR5hSzdWlO3yczFT6aGOvU_3LKp9P-UwSQNr8,273
34
+ athena/errors/unsupported_media_type_error.py,sha256=fQ7TYQ3QYcT_YzFzO4f8_bLger7UQfZmuF22I9jYxFA,340
35
+ athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ athena/query/__init__.py,sha256=EIeVs3aDVNAqLyWetSrQldzc2yUdJkf_cJXyrLdMDj0,171
37
+ athena/query/client.py,sha256=8RIX0UGCEWZO5DJXgaaynOrsNikbSd1EK0Bb9CqjbEo,13534
38
+ athena/query/types/__init__.py,sha256=WX-Or2h5NY2sv93ojrZsHcmiFHGYdqd0yxNo-5iGHR4,206
39
+ athena/query/types/query_execute_request_database_asset_ids.py,sha256=aoVl5Xb34Q27hYGuVTnByGIxtHkL67wAwzXh7eJctew,154
40
+ athena/tools/__init__.py,sha256=DREW2sa5Z-Rj8v1LQ-tNhflI-EO_oDc6NCmF5v0LWeU,288
41
+ athena/tools/calendar/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
42
+ athena/tools/calendar/client.py,sha256=IZg0euLjZlgnJzig4lsFykmm8mOx22Fg_YOFwKyxxMY,6537
43
+ athena/tools/client.py,sha256=VRfy9ffFfQJ149103by07g2hAH7vdQ1--cGNO7ooxL8,50771
44
+ athena/tools/email/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
+ athena/tools/email/client.py,sha256=UnOgdSarD1Yofnxr9YMyhHsD_Gx24AVLarf5XDADAlk,9429
46
+ athena/tools/structured_data_extractor/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
47
+ athena/tools/structured_data_extractor/client.py,sha256=yV4m_ynodz23GzR3MpuDk_lrE2DMsQ-2ziRbNnOakSo,13563
48
+ athena/tools/tasks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
49
+ athena/tools/tasks/client.py,sha256=M2zXTTvQH2XXFuEbd8mUjlWmgFaIsqlMaS0az4d20OY,3605
50
+ athena/tools/types/__init__.py,sha256=cA-ZQm6veQAP3_vKu9KkZpISsQqgTBN_Z--FGY1c2iA,197
51
+ athena/tools/types/tools_data_frame_request_columns_item.py,sha256=GA1FUlTV_CfSc-KToTAwFf4Exl0rr4fsweVZupztjw0,138
52
+ athena/types/__init__.py,sha256=kGp1ndmAw1sNl3bLrmvUCUF-rHU3I930GSKR6lcw2O0,2835
53
+ athena/types/asset_content_request_out.py,sha256=lWE1lC5Mg0yQr6oNW7mTxoCTYKKR7MS3a1dBGHOLf7Q,688
54
+ athena/types/asset_node.py,sha256=rWqVDtiUHfXPD-eGV3naAFZMOkZtYhoY-ATfrIcTFmc,876
55
+ athena/types/asset_not_found_error.py,sha256=28N-9PDyGZKZQiEQTdF6M7PyCqMvkz36FWx-5P5Ze04,564
56
+ athena/types/asset_screenshot_response_out.py,sha256=Fj6XbJbiKiZ80-FNX777JRcWPufjRAFBI3FrajVU98M,1105
57
+ athena/types/chunk.py,sha256=LQHvC91gTidgKZJrzaW3AnQ4mVs25VSYqQTo4fX2Mdk,783
58
+ athena/types/chunk_content_item.py,sha256=_jH24yhXmtzVqahcKEb-6k8vPe40serOzH1s47T0_MA,1163
59
+ athena/types/chunk_result.py,sha256=yv9ULRr0CpZqMVGeCtQc5Sa1SP0dP211YtzMcuglVq4,770
60
+ athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
61
+ athena/types/custom_agent_response.py,sha256=LWDDZcbUsCpKH7gGUwjhbsAWBgokgielaWtzabqxB44,720
62
+ athena/types/data_frame_request_out.py,sha256=gPzJZc0LcNEj7Q4nLkBm-U6DJFXuL6O1MslxotrQKPQ,1112
63
+ athena/types/data_frame_request_out_columns_item.py,sha256=9cjzciFv6C8n8Griytt_q_8ovkzHViS5tvUcMDfkfKE,143
64
+ athena/types/data_frame_request_out_data_item_item.py,sha256=KMTJRr-1bdKDNMbUericCliwRoPHLGRV-n2bJtxdRW0,144
65
+ athena/types/data_frame_request_out_index_item.py,sha256=bW7oe912trpkYKodj-I_AiTXXy61yWzliekcsUZkZE0,141
66
+ athena/types/data_frame_unknown_format_error.py,sha256=c90I8SuAoXVgl89Fub8P8wABi7tDKTLejIfrfxjvI14,611
67
+ athena/types/document_chunk.py,sha256=aN9s4w3Agy6jwqnX4m5i_UpUWYK4zl7v6MZxF7z1C1o,687
68
+ athena/types/drive_agent_response.py,sha256=nl5Uvk-Pq14AvH3edzbhyK1wjBYvdvE04lsfcM-BSns,675
69
+ athena/types/file_chunk_request_out.py,sha256=JM4ScTcFW8nwY5OCOp1dt7dZQ5dAHqkmhJNOQO8QOuU,701
70
+ athena/types/file_too_large_error.py,sha256=nSzGU98P7tcpsPjP5QuLZYeWsetz1OocvcoXHmaClnU,563
71
+ athena/types/folder_response.py,sha256=f8XnLjqzsxyBCUmuSFEezZCHXyYBh_IImikZz7xNurM,723
72
+ athena/types/general_agent_config.py,sha256=dRlkHT-cExZfOi30uHyUVUNhb2O4CJcIYNEEBOfMhzk,939
73
+ athena/types/general_agent_config_enabled_tools_item.py,sha256=YqcP_cPnH2HnM6xRb8nxKpJqNyHj0Tsw1eiN6ejAMZg,164
74
+ athena/types/general_agent_request.py,sha256=6_zCPuKi7eHb-2BX61-EdcsqDVMb5yEMBpnDqGiWE4g,906
75
+ athena/types/general_agent_response.py,sha256=qXVsiKzsNxwpmy98sLwW7_vpaR9KBj-SHESbxNH2KuE,672
76
+ athena/types/image_url_content.py,sha256=F67RAcLV-d1I5IXkpTzoebqKzC8u7mYqeQYvIy9o0Uw,625
77
+ athena/types/parent_folder_error.py,sha256=9Ve-_cMtAckNF2FAfC6N7lxmyIQ1Z7nz1nLKiftjjvg,563
78
+ athena/types/prompt_message.py,sha256=ABug1IHOE5SasVfHPsRN8t9LpPnKYuWOLqLQCzfUmN4,670
79
+ athena/types/research_agent_response.py,sha256=EVnEV6Vc9q52T9CjP4D0FVMsGzJp0vrStLEF3TyKVU8,692
80
+ athena/types/save_asset_request_out.py,sha256=aESiG46UJlQDQNlhLBKNBwj8tUzrCfGzZ9vwwWgNopA,636
81
+ athena/types/sql_agent_response.py,sha256=R7SrObch77_jXqR-rwWoBrRsBD6DJuSnnoJwfvP5Kcw,801
82
+ athena/types/structured_data_extractor_response.py,sha256=jfzYI0l_71g3L-XoMS1tYlF1H0XIDBvAAl_jh2Xy-4c,1103
83
+ athena/types/text_content.py,sha256=XgyH8B_IiI5WTHw5A3b9p8Po8L86t1K4vMjLK1idybg,628
84
+ athena/types/tool.py,sha256=vc9TyUaP0QU0x8PlAwqey6snB4NYTV0clE-fcI3HqhM,148
85
+ athena/types/type.py,sha256=kSrw_flnl0zfJuk185c8nc4dSzNS-x1qehqDAuQ5ra8,155
86
+ athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
87
+ athena_intelligence-0.1.127.dist-info/METADATA,sha256=4vGDb2DWLHPUeiHWGqzWk5XLuDAgvf0-7ToUtwFyJlw,5679
88
+ athena_intelligence-0.1.127.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
89
+ athena_intelligence-0.1.127.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.6.1
2
+ Generator: poetry-core 2.0.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,86 +0,0 @@
1
- athena/__init__.py,sha256=Q5F_OwlFj6Y4zWtw4ncDPXp16HWBRrQn7Q4fJYBa5Pc,2538
2
- athena/agents/__init__.py,sha256=I6MO2O_hb6KLa8oDHbGNSAhcPE-dsrX6LMcAEhsg3PQ,160
3
- athena/agents/client.py,sha256=aI8rNhXBSVJ-hvjnIoCK9sKvHB0e95Zkn-3YpXOKFrY,6721
4
- athena/agents/drive/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
5
- athena/agents/drive/client.py,sha256=k--gUzUSi6L5kpmKHi7eX1UnlEq4kG-QI9phAZ5srC0,4727
6
- athena/agents/general/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
7
- athena/agents/general/client.py,sha256=BfM_FLF3mduO4o976-RNXhbvuRpp0zRTyOdlCKW529M,13154
8
- athena/agents/research/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
9
- athena/agents/research/client.py,sha256=mo63cUvLw8AC9I29WI4Ym_jOsvRsco1wRqsNp0rtCEc,4745
10
- athena/agents/sql/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
11
- athena/agents/sql/client.py,sha256=1r2aT4JLxVCeL0FzEBeHmttwerdRmJOxVHim2_CHkvg,4767
12
- athena/base_client.py,sha256=-kVdOlIibBz48lxWratdQAzT7fTvZsORvOMF3KoPDPw,5647
13
- athena/client.py,sha256=5n5pOXAcMljMR2-MnI8fGvHY-TgqLzWmihDur0XrpM8,19503
14
- athena/core/__init__.py,sha256=UFXpYzcGxWQUucU1TkjOQ9mGWN3A5JohluOIWVYKU4I,973
15
- athena/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
16
- athena/core/client_wrapper.py,sha256=nziI1y3xFUHOGDnMU6SL8HlIHNCXDaJtpfCCe4o2tJ4,1806
17
- athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
18
- athena/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
19
- athena/core/http_client.py,sha256=Z4NuAsJD-51yqmoME17O5sxwx5orSp1wsnd6bPyKcgA,17768
20
- athena/core/jsonable_encoder.py,sha256=L6G68Py6gEo8n87rXwlkLPUyzHvXftEBjJZNb2tCuOA,3742
21
- athena/core/pydantic_utilities.py,sha256=hI3vcpSG47sVlafyPol2T2ICt8HNMIu_rM9amc2zf7w,748
22
- athena/core/query_encoder.py,sha256=sI6XiwFby-WRIk4MVN_5wlAlm30aCHE73Uvm09fb9qQ,1266
23
- athena/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
24
- athena/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
25
- athena/environment.py,sha256=_e7YwByXALEk7fNJNJvjF81caYTbsx4c7wwftCJHQ7g,214
26
- athena/errors/__init__.py,sha256=WlRIo4aGYcnxtY2DtoWS5YzmaKQHFp4Uh3mXxrakU_c,655
27
- athena/errors/bad_request_error.py,sha256=wfNVQgYe-5jsfeex-IBMrqn05oArDz0PT0ddj01S9aE,298
28
- athena/errors/content_too_large_error.py,sha256=_Jacqup8-YwalVeCv6NWDo9bqZhByXoUaApAxfFc9tU,304
29
- athena/errors/internal_server_error.py,sha256=E0rgqJC0-LcetLi1HmSi92KpvNkGSRCIdBeEqT_ln1s,252
30
- athena/errors/not_found_error.py,sha256=fIMBz7ubqcX3HpLIoqmF7-kFCoN6-Uj1lW4OuBnaK6s,300
31
- athena/errors/unauthorized_error.py,sha256=T-UWUDnIEmguQei9CYcRJ2SCt4DhZVxpuZRNAwK0Ru4,250
32
- athena/errors/unprocessable_entity_error.py,sha256=OztAzRntOJVxbZtXwoR4epahhG6chKOB5chVLUC8D9Q,257
33
- athena/errors/unsupported_media_type_error.py,sha256=fQ7TYQ3QYcT_YzFzO4f8_bLger7UQfZmuF22I9jYxFA,340
34
- athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- athena/query/__init__.py,sha256=EIeVs3aDVNAqLyWetSrQldzc2yUdJkf_cJXyrLdMDj0,171
36
- athena/query/client.py,sha256=GYvBV7YFYjL3gyskeF6C8BJZlLvU7R045gJ5kGiYkvg,9043
37
- athena/query/types/__init__.py,sha256=WX-Or2h5NY2sv93ojrZsHcmiFHGYdqd0yxNo-5iGHR4,206
38
- athena/query/types/query_execute_request_database_asset_ids.py,sha256=aoVl5Xb34Q27hYGuVTnByGIxtHkL67wAwzXh7eJctew,154
39
- athena/tools/__init__.py,sha256=DREW2sa5Z-Rj8v1LQ-tNhflI-EO_oDc6NCmF5v0LWeU,288
40
- athena/tools/calendar/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
41
- athena/tools/calendar/client.py,sha256=hKWzWyl1GwFG69oX3tektwNfy2sV5Lt6PRy9vTyPLOo,5283
42
- athena/tools/client.py,sha256=-hjk99ABo74-qT8OMMqASl0c7oOkdhHSMFluBa9l5qA,25965
43
- athena/tools/email/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
44
- athena/tools/email/client.py,sha256=epUkV5af3eilVgRR81SFZAf29JuhEWKMkdMuN6qDLUM,7593
45
- athena/tools/structured_data_extractor/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
46
- athena/tools/structured_data_extractor/client.py,sha256=Wr2r_kU8WTRiKA2qfCfqvmllddj3MjT1Vqr27La8gO8,11281
47
- athena/tools/tasks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
48
- athena/tools/tasks/client.py,sha256=5kT6ulh2YDIbNYiv-knBjtF-ST7p0dUvZyrd7t5O61s,2975
49
- athena/tools/types/__init__.py,sha256=cA-ZQm6veQAP3_vKu9KkZpISsQqgTBN_Z--FGY1c2iA,197
50
- athena/tools/types/tools_data_frame_request_columns_item.py,sha256=GA1FUlTV_CfSc-KToTAwFf4Exl0rr4fsweVZupztjw0,138
51
- athena/types/__init__.py,sha256=IbCXHjNzSdiLn2HrPsxj90DLzYDp63WJk4FsCVoymK0,2639
52
- athena/types/asset_node.py,sha256=CiqYxuYCXhOs9XAvBrUaVVMZpf8gdocVTAUBmUS5l1g,1375
53
- athena/types/asset_not_found_error.py,sha256=ZcgqRuzvO4Z8vVVxwtDB-QtKhpVIVV3hqQuJeUoOoJE,1121
54
- athena/types/chunk.py,sha256=M4O7Sj3EMvkXioQneuKbptr1n5XNGCU9fVxYR12XG9o,1340
55
- athena/types/chunk_content_item.py,sha256=2B1mTc0a4h7jyKRiYwfC573fM4xijhNEgfd_FI-myj4,2251
56
- athena/types/chunk_result.py,sha256=b74rp4xNKm3r0R76N-VnoaKrEKeBzMWRGI2PVMyiXpc,1310
57
- athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
58
- athena/types/custom_agent_response.py,sha256=_Vm_fJq4cETtOawBW7p0cvH4Jmle26lHQZ73A8MdLX0,1263
59
- athena/types/data_frame_request_out.py,sha256=1CEBe-baDQi0uz_EgMw0TKGYXGj6KV44cL3ViRTZLKM,1669
60
- athena/types/data_frame_request_out_columns_item.py,sha256=9cjzciFv6C8n8Griytt_q_8ovkzHViS5tvUcMDfkfKE,143
61
- athena/types/data_frame_request_out_data_item_item.py,sha256=KMTJRr-1bdKDNMbUericCliwRoPHLGRV-n2bJtxdRW0,144
62
- athena/types/data_frame_request_out_index_item.py,sha256=bW7oe912trpkYKodj-I_AiTXXy61yWzliekcsUZkZE0,141
63
- athena/types/data_frame_unknown_format_error.py,sha256=lbgAUArEgIYZt3P5Ji4Clp-xyXnKJR7-v5VzXwKu0J8,1168
64
- athena/types/document_chunk.py,sha256=deXiiMA_U5EabUh1Fg2AB4ElYuc5OsTnrU7JwLApJmA,1227
65
- athena/types/drive_agent_response.py,sha256=UMKF43e5WScH0a9ITuxjwGWzAzvXAl1OsfRVeXSyfjk,1218
66
- athena/types/file_chunk_request_out.py,sha256=Ju0I_UpSitjQ-XqSIRvvg2XA6QtfCLZClPq5PUqmPNg,1258
67
- athena/types/file_too_large_error.py,sha256=AinkrcgR7lcTILAD8RX0x48P3GlSoAh1OihxMvSvRuo,1120
68
- athena/types/folder_response.py,sha256=qq0hLRvfJFeXUz7Cc8oeyCabG73ac2H4lM_j0QW38YY,1280
69
- athena/types/general_agent_config.py,sha256=FaswWVsDTsL5Fs9Tlx4zSK1S8OrsFnzruEt7l72XlGA,1457
70
- athena/types/general_agent_config_enabled_tools_item.py,sha256=6gYaU7uIDJbgygtBKLdYL-VbPxxbEcxwRsT8VaW5vN8,165
71
- athena/types/general_agent_request.py,sha256=NnUVtz8U1VoA1SJapbp163Wf_inEQVeFCYWJvM4P-qI,1449
72
- athena/types/general_agent_response.py,sha256=9BxqXzchSti5O0Ch_WJkvmkawkBhpH03QlZIbKdYbAY,1212
73
- athena/types/image_url_content.py,sha256=AivFiET-XA7guQ_rWEGOOafDuQBXTvO8-rMGmKucCss,1182
74
- athena/types/parent_folder_error.py,sha256=ZMF-i3mZY6Mu1n5uQ60Q3mIIfehlWuXtgFUkSYspkx8,1120
75
- athena/types/prompt_message.py,sha256=0z2qlWbqHCG2j7hvWBDvDpQrHLDCI3h8Z0kg8AOOgKs,1227
76
- athena/types/research_agent_response.py,sha256=-1mX4M0IEWDFH3alSZdtuhZHSerjWYJQkn74r3Dp26g,1235
77
- athena/types/save_asset_request_out.py,sha256=5bpBaUV3oeuL_hz4s07c-6MQHkn4cBsyxgT_SD5oi6I,1193
78
- athena/types/sql_agent_response.py,sha256=DmeG0HPZkPT_gTrtkroVZluGZIV9McB8wmME2iT8PB0,1347
79
- athena/types/structured_data_extractor_response.py,sha256=RBTjR50PWs3NM0GUlENNHaqAMiOatf14Vmvrd94de8s,1647
80
- athena/types/text_content.py,sha256=uG2poNIkM6o7tFgf-eKzZk9kZHYImY3JdI-NkYiqWgU,1185
81
- athena/types/tool.py,sha256=6H2BFZiBgQOtYUAwSYBeGZKhwev17IEwnIjgmno6dZw,436
82
- athena/types/type.py,sha256=JaUIt4ogmO4XxCQ9c56fqKN5qANKkrnpuZGmdqOCIow,581
83
- athena/version.py,sha256=8aYAOJtVLaJLpRp6mTiEIhnl8gXA7yE0aDtZ-3mKQ4k,87
84
- athena_intelligence-0.1.125.dist-info/METADATA,sha256=YZtDUfJx8ZHA6L-it-tdB-28N1MR0T3LELbTW0bWDBs,5274
85
- athena_intelligence-0.1.125.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
86
- athena_intelligence-0.1.125.dist-info/RECORD,,