athena-intelligence 0.1.231__py3-none-any.whl → 0.1.243__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 +217 -68
- athena/agents/__init__.py +33 -1
- athena/agents/client.py +81 -18
- athena/aop/client.py +2 -2
- athena/aop/raw_client.py +2 -2
- athena/assets/client.py +12 -2
- athena/base_client.py +118 -18
- athena/client.py +14 -8
- athena/core/__init__.py +73 -20
- athena/core/client_wrapper.py +2 -2
- athena/core/force_multipart.py +4 -2
- athena/core/http_response.py +1 -1
- athena/core/pydantic_utilities.py +5 -2
- athena/errors/__init__.py +42 -7
- athena/query/__init__.py +28 -1
- athena/query/types/__init__.py +30 -1
- athena/tools/__init__.py +47 -3
- athena/tools/client.py +157 -26
- athena/tools/sheets/__init__.py +30 -0
- athena/tools/sheets/client.py +59 -94
- athena/tools/sheets/raw_client.py +60 -74
- athena/tools/sheets/types/__init__.py +36 -0
- athena/tools/sheets/types/update_sheet_range_request_values_item_item.py +5 -0
- athena/tools/types/__init__.py +28 -1
- athena/types/__init__.py +181 -51
- athena/types/aop_execute_response_out.py +2 -1
- athena/types/backgroundcolor.py +7 -0
- athena/types/border_model.py +23 -0
- athena/types/border_style.py +7 -0
- athena/types/borders_model.py +23 -0
- athena/types/cell_format.py +49 -0
- athena/types/cell_format_horizontal_alignment.py +5 -0
- athena/types/cell_format_vertical_alignment.py +5 -0
- athena/types/color.py +7 -0
- athena/types/conversation_asset_info.py +3 -2
- athena/types/conversation_message.py +42 -0
- athena/types/conversation_result.py +67 -0
- athena/types/number_format_model.py +28 -0
- athena/types/number_format_type.py +21 -0
- athena/types/sheet.py +53 -0
- athena/types/text_format_model.py +28 -0
- athena/types/textrotation.py +5 -0
- athena/types/theme_color.py +20 -0
- athena/types/wrap_strategy.py +5 -0
- {athena_intelligence-0.1.231.dist-info → athena_intelligence-0.1.243.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.231.dist-info → athena_intelligence-0.1.243.dist-info}/RECORD +47 -28
- {athena_intelligence-0.1.231.dist-info → athena_intelligence-0.1.243.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
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 .border_style import BorderStyle
|
|
8
|
+
from .color import Color
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class BorderModel(UniversalBaseModel):
|
|
12
|
+
color: typing.Optional[Color] = None
|
|
13
|
+
style: BorderStyle
|
|
14
|
+
width: int
|
|
15
|
+
|
|
16
|
+
if IS_PYDANTIC_V2:
|
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
18
|
+
else:
|
|
19
|
+
|
|
20
|
+
class Config:
|
|
21
|
+
frozen = True
|
|
22
|
+
smart_union = True
|
|
23
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,23 @@
|
|
|
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 .border_model import BorderModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class BordersModel(UniversalBaseModel):
|
|
11
|
+
bottom: typing.Optional[BorderModel] = None
|
|
12
|
+
left: typing.Optional[BorderModel] = None
|
|
13
|
+
right: typing.Optional[BorderModel] = None
|
|
14
|
+
top: typing.Optional[BorderModel] = None
|
|
15
|
+
|
|
16
|
+
if IS_PYDANTIC_V2:
|
|
17
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
18
|
+
else:
|
|
19
|
+
|
|
20
|
+
class Config:
|
|
21
|
+
frozen = True
|
|
22
|
+
smart_union = True
|
|
23
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
import typing_extensions
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from ..core.serialization import FieldMetadata
|
|
9
|
+
from .backgroundcolor import Backgroundcolor
|
|
10
|
+
from .borders_model import BordersModel
|
|
11
|
+
from .cell_format_horizontal_alignment import CellFormatHorizontalAlignment
|
|
12
|
+
from .cell_format_vertical_alignment import CellFormatVerticalAlignment
|
|
13
|
+
from .number_format_model import NumberFormatModel
|
|
14
|
+
from .text_format_model import TextFormatModel
|
|
15
|
+
from .textrotation import Textrotation
|
|
16
|
+
from .wrap_strategy import WrapStrategy
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class CellFormat(UniversalBaseModel):
|
|
20
|
+
background_color: typing_extensions.Annotated[
|
|
21
|
+
typing.Optional[Backgroundcolor], FieldMetadata(alias="backgroundColor")
|
|
22
|
+
] = None
|
|
23
|
+
borders: typing.Optional[BordersModel] = None
|
|
24
|
+
horizontal_alignment: typing_extensions.Annotated[
|
|
25
|
+
typing.Optional[CellFormatHorizontalAlignment], FieldMetadata(alias="horizontalAlignment")
|
|
26
|
+
] = None
|
|
27
|
+
indent: typing.Optional[int] = None
|
|
28
|
+
number_format: typing_extensions.Annotated[
|
|
29
|
+
typing.Optional[NumberFormatModel], FieldMetadata(alias="numberFormat")
|
|
30
|
+
] = None
|
|
31
|
+
text_format: typing_extensions.Annotated[typing.Optional[TextFormatModel], FieldMetadata(alias="textFormat")] = None
|
|
32
|
+
text_rotation: typing_extensions.Annotated[typing.Optional[Textrotation], FieldMetadata(alias="textRotation")] = (
|
|
33
|
+
None
|
|
34
|
+
)
|
|
35
|
+
vertical_alignment: typing_extensions.Annotated[
|
|
36
|
+
typing.Optional[CellFormatVerticalAlignment], FieldMetadata(alias="verticalAlignment")
|
|
37
|
+
] = None
|
|
38
|
+
wrap_strategy: typing_extensions.Annotated[typing.Optional[WrapStrategy], FieldMetadata(alias="wrapStrategy")] = (
|
|
39
|
+
None
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
if IS_PYDANTIC_V2:
|
|
43
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
44
|
+
else:
|
|
45
|
+
|
|
46
|
+
class Config:
|
|
47
|
+
frozen = True
|
|
48
|
+
smart_union = True
|
|
49
|
+
extra = pydantic.Extra.allow
|
athena/types/color.py
ADDED
|
@@ -4,6 +4,7 @@ import typing
|
|
|
4
4
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
+
from .conversation_message import ConversationMessage
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
class ConversationAssetInfo(UniversalBaseModel):
|
|
@@ -41,7 +42,7 @@ class ConversationAssetInfo(UniversalBaseModel):
|
|
|
41
42
|
Last active channel for the conversation
|
|
42
43
|
"""
|
|
43
44
|
|
|
44
|
-
last_message: typing.Optional[
|
|
45
|
+
last_message: typing.Optional[ConversationMessage] = pydantic.Field(default=None)
|
|
45
46
|
"""
|
|
46
47
|
Last message in the conversation
|
|
47
48
|
"""
|
|
@@ -60,7 +61,7 @@ class ConversationAssetInfo(UniversalBaseModel):
|
|
|
60
61
|
List of linked project assets
|
|
61
62
|
"""
|
|
62
63
|
|
|
63
|
-
messages: typing.Optional[typing.List[
|
|
64
|
+
messages: typing.Optional[typing.List[ConversationMessage]] = pydantic.Field(default=None)
|
|
64
65
|
"""
|
|
65
66
|
Complete list of messages in the conversation from checkpoints
|
|
66
67
|
"""
|
|
@@ -0,0 +1,42 @@
|
|
|
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 .content import Content
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ConversationMessage(UniversalBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Model representing a single conversation message.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
additional_kwargs: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
16
|
+
"""
|
|
17
|
+
Additional message metadata
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
content: Content = pydantic.Field()
|
|
21
|
+
"""
|
|
22
|
+
Message content as text or structured content blocks
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
id: str = pydantic.Field()
|
|
26
|
+
"""
|
|
27
|
+
Unique identifier for the message
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
role: str = pydantic.Field()
|
|
31
|
+
"""
|
|
32
|
+
Role of the message sender (user, assistant, system)
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
if IS_PYDANTIC_V2:
|
|
36
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
37
|
+
else:
|
|
38
|
+
|
|
39
|
+
class Config:
|
|
40
|
+
frozen = True
|
|
41
|
+
smart_union = True
|
|
42
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,67 @@
|
|
|
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_message import ConversationMessage
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ConversationResult(UniversalBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Model representing the conversation result from task/AOP execution.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
conversation_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
16
|
+
"""
|
|
17
|
+
ID of the conversation asset
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
created_at: typing.Optional[str] = pydantic.Field(default=None)
|
|
21
|
+
"""
|
|
22
|
+
ISO timestamp when conversation was created
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
last_assistant_message: typing.Optional[ConversationMessage] = pydantic.Field(default=None)
|
|
26
|
+
"""
|
|
27
|
+
The last message from the assistant
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
messages: typing.Optional[typing.List[ConversationMessage]] = pydantic.Field(default=None)
|
|
31
|
+
"""
|
|
32
|
+
Complete list of messages in the conversation
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
messages_source: str = pydantic.Field()
|
|
36
|
+
"""
|
|
37
|
+
Source of the messages (e.g., 'checkpoints')
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
|
|
41
|
+
"""
|
|
42
|
+
Additional conversation metadata
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
num_messages: int = pydantic.Field()
|
|
46
|
+
"""
|
|
47
|
+
Total number of messages in the conversation
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
title: typing.Optional[str] = pydantic.Field(default=None)
|
|
51
|
+
"""
|
|
52
|
+
Title of the conversation
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
updated_at: typing.Optional[str] = pydantic.Field(default=None)
|
|
56
|
+
"""
|
|
57
|
+
ISO timestamp when conversation was last updated
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
if IS_PYDANTIC_V2:
|
|
61
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
62
|
+
else:
|
|
63
|
+
|
|
64
|
+
class Config:
|
|
65
|
+
frozen = True
|
|
66
|
+
smart_union = True
|
|
67
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,28 @@
|
|
|
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 .number_format_type import NumberFormatType
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class NumberFormatModel(UniversalBaseModel):
|
|
11
|
+
pattern: str = pydantic.Field()
|
|
12
|
+
"""
|
|
13
|
+
Excel-compatible format string. If omitted, the server will pick a sensible default based on the chosen type (e.g. NUMBER → '#,##0', CURRENCY → '$#,##0.00').
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
type: NumberFormatType = pydantic.Field()
|
|
17
|
+
"""
|
|
18
|
+
Target number format category (NUMBER, CURRENCY, DATE, etc.)
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
if IS_PYDANTIC_V2:
|
|
22
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
23
|
+
else:
|
|
24
|
+
|
|
25
|
+
class Config:
|
|
26
|
+
frozen = True
|
|
27
|
+
smart_union = True
|
|
28
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
NumberFormatType = typing.Union[
|
|
6
|
+
typing.Literal[
|
|
7
|
+
"GENERAL",
|
|
8
|
+
"NUMBER",
|
|
9
|
+
"CURRENCY",
|
|
10
|
+
"ACCOUNTING",
|
|
11
|
+
"DATE",
|
|
12
|
+
"TIME",
|
|
13
|
+
"DATE_TIME",
|
|
14
|
+
"PERCENT",
|
|
15
|
+
"FRACTION",
|
|
16
|
+
"SCIENTIFIC",
|
|
17
|
+
"TEXT",
|
|
18
|
+
"SPECIAL",
|
|
19
|
+
],
|
|
20
|
+
typing.Any,
|
|
21
|
+
]
|
athena/types/sheet.py
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
import typing_extensions
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from ..core.serialization import FieldMetadata
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Sheet(UniversalBaseModel):
|
|
12
|
+
column_count: typing_extensions.Annotated[int, FieldMetadata(alias="columnCount")] = pydantic.Field()
|
|
13
|
+
"""
|
|
14
|
+
Column count (Default to 100)
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
frozen_column_count: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="frozenColumnCount")] = (
|
|
18
|
+
None
|
|
19
|
+
)
|
|
20
|
+
frozen_row_count: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="frozenRowCount")] = None
|
|
21
|
+
hidden: typing.Optional[bool] = None
|
|
22
|
+
index: int = pydantic.Field()
|
|
23
|
+
"""
|
|
24
|
+
The order of the new sheet
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
row_count: typing_extensions.Annotated[int, FieldMetadata(alias="rowCount")] = pydantic.Field()
|
|
28
|
+
"""
|
|
29
|
+
Row count (Defauls to 1000)
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
sheet_id: typing_extensions.Annotated[int, FieldMetadata(alias="sheetId")] = pydantic.Field()
|
|
33
|
+
"""
|
|
34
|
+
Sheet ID (required)
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
tab_color: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="tabColor")] = pydantic.Field(
|
|
38
|
+
default=None
|
|
39
|
+
)
|
|
40
|
+
"""
|
|
41
|
+
Tab color in hex format (e.g., '#FF0000' for red)
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
title: str
|
|
45
|
+
|
|
46
|
+
if IS_PYDANTIC_V2:
|
|
47
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
48
|
+
else:
|
|
49
|
+
|
|
50
|
+
class Config:
|
|
51
|
+
frozen = True
|
|
52
|
+
smart_union = True
|
|
53
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
import typing_extensions
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
|
+
from ..core.serialization import FieldMetadata
|
|
9
|
+
from .color import Color
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class TextFormatModel(UniversalBaseModel):
|
|
13
|
+
bold: typing.Optional[bool] = None
|
|
14
|
+
color: typing.Optional[Color] = None
|
|
15
|
+
font_family: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="fontFamily")] = None
|
|
16
|
+
font_size: typing_extensions.Annotated[typing.Optional[int], FieldMetadata(alias="fontSize")] = None
|
|
17
|
+
italic: typing.Optional[bool] = None
|
|
18
|
+
strikethrough: typing.Optional[bool] = None
|
|
19
|
+
underline: typing.Optional[bool] = None
|
|
20
|
+
|
|
21
|
+
if IS_PYDANTIC_V2:
|
|
22
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
23
|
+
else:
|
|
24
|
+
|
|
25
|
+
class Config:
|
|
26
|
+
frozen = True
|
|
27
|
+
smart_union = True
|
|
28
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,20 @@
|
|
|
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 ThemeColor(UniversalBaseModel):
|
|
10
|
+
theme: int
|
|
11
|
+
tint: typing.Optional[float] = None
|
|
12
|
+
|
|
13
|
+
if IS_PYDANTIC_V2:
|
|
14
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
15
|
+
else:
|
|
16
|
+
|
|
17
|
+
class Config:
|
|
18
|
+
frozen = True
|
|
19
|
+
smart_union = True
|
|
20
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
athena/__init__.py,sha256=
|
|
2
|
-
athena/agents/__init__.py,sha256=
|
|
3
|
-
athena/agents/client.py,sha256=
|
|
1
|
+
athena/__init__.py,sha256=athVDySl90A2iyr6U_CSoKen4D5u3ZHZLtjc7d_2pOg,8771
|
|
2
|
+
athena/agents/__init__.py,sha256=LqM1Kj7aFzYoFsB7xrYKPDJAnOWmcig1LNE4jAiWpJQ,1166
|
|
3
|
+
athena/agents/client.py,sha256=b3QvSCRsiHD6UREN7llGY946V-oZdKkhouQ6p_nH1j8,8044
|
|
4
4
|
athena/agents/drive/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
5
5
|
athena/agents/drive/client.py,sha256=aG-dDwJUsBAz2irrergGvcfLawMRr0z88avs6mxSIX8,4037
|
|
6
6
|
athena/agents/drive/raw_client.py,sha256=yN5orC6qhZJ9J3fUC5sr2FR9VUGv5Ov_YLWUgbv7HoI,5977
|
|
@@ -15,29 +15,29 @@ athena/agents/sql/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4
|
|
|
15
15
|
athena/agents/sql/client.py,sha256=Ht7PMJSMqVwihdqk74yyqwFUSXOPcLjxNB-YU6cVGAE,4069
|
|
16
16
|
athena/agents/sql/raw_client.py,sha256=sI7Aq6_Z4AdgXzqBXG2G4l2fYQTWjQ-5IeNZdClmXhY,6017
|
|
17
17
|
athena/aop/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
18
|
-
athena/aop/client.py,sha256=
|
|
19
|
-
athena/aop/raw_client.py,sha256=
|
|
18
|
+
athena/aop/client.py,sha256=Fg7rNF1k78MIKDELy8GE-DfAaJvHFUUBG5haMR_Vefo,6758
|
|
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=
|
|
21
|
+
athena/assets/client.py,sha256=d7PrFlPORWRE6M8g7paJ7O45hf7wGUex093FhW1lESE,5395
|
|
22
22
|
athena/assets/raw_client.py,sha256=TW6dCb1i68p-0sf4_B2F0H8SK-kk9sIHFAuwfTEg5GQ,7077
|
|
23
|
-
athena/base_client.py,sha256=
|
|
24
|
-
athena/client.py,sha256=
|
|
25
|
-
athena/core/__init__.py,sha256=
|
|
23
|
+
athena/base_client.py,sha256=IlYf1TLV3w-JZPATzyT-b5wSrjKm-fsT_3bC172GpVI,9576
|
|
24
|
+
athena/client.py,sha256=I-aFsGhcViOdOeaWayhMkaMkV5545Yz2Gb-BoVQvhE4,22317
|
|
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=TTfj3udDzMG6AWMSx-bW6Y8E1qrDBlxqFMQDILvBNVs,2392
|
|
28
28
|
athena/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
29
29
|
athena/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
30
|
-
athena/core/force_multipart.py,sha256=
|
|
30
|
+
athena/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
|
|
31
31
|
athena/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
|
|
32
|
-
athena/core/http_response.py,sha256=
|
|
32
|
+
athena/core/http_response.py,sha256=A6URkoTBCiryctAA-m9EiDWOsHgM5oYAlcYVc_YOiiI,1330
|
|
33
33
|
athena/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
|
|
34
|
-
athena/core/pydantic_utilities.py,sha256=
|
|
34
|
+
athena/core/pydantic_utilities.py,sha256=kdepxVbqP7nmMhh9rttKiMF3bQEYRZiiS2-JIyTLfAc,10824
|
|
35
35
|
athena/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
|
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
39
|
athena/environment.py,sha256=OI0PB-ESRlpuUDrwcUx8PU0XBFBLsp7Cxhc9KgJJTFc,267
|
|
40
|
-
athena/errors/__init__.py,sha256=
|
|
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
|
|
43
43
|
athena/errors/internal_server_error.py,sha256=t1-kpoDC2biEuoE-Ne8v1kuQswvsIEwt_xPPoBmGG00,342
|
|
@@ -46,47 +46,59 @@ athena/errors/unauthorized_error.py,sha256=mryinHCAaknn5St2VF17R9XybZUcWRRYWEjxg
|
|
|
46
46
|
athena/errors/unprocessable_entity_error.py,sha256=JqxtzIhvjkpQDqbT9Q-go1n-gyv9PsYqq0ng_ZYyBMo,347
|
|
47
47
|
athena/errors/unsupported_media_type_error.py,sha256=qEyfvc5AZEDI-Kl6MC_punVPnKZMXTqD74ZaXxom_ko,428
|
|
48
48
|
athena/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
athena/query/__init__.py,sha256=
|
|
49
|
+
athena/query/__init__.py,sha256=8RLS14P_m_VK0oZsMCQqLy99UKVJaG4ntVtxNENXZ-0,1125
|
|
50
50
|
athena/query/client.py,sha256=X4fBmmmawPaBEt9xWIuhoAcohPKmMadKzpgcEp22oYA,5692
|
|
51
51
|
athena/query/raw_client.py,sha256=aD0CfHJrTZnEiIGwsk4ZSUIueKfDV9vdvMxsfBkvDWs,13701
|
|
52
|
-
athena/query/types/__init__.py,sha256=
|
|
52
|
+
athena/query/types/__init__.py,sha256=YhWcT3nc4GkLV9xKlEG2sHRaSP_O3O-rp6kaIlHuvpI,1201
|
|
53
53
|
athena/query/types/query_execute_request_database_asset_ids.py,sha256=aoVl5Xb34Q27hYGuVTnByGIxtHkL67wAwzXh7eJctew,154
|
|
54
54
|
athena/threads/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
55
55
|
athena/threads/client.py,sha256=gLjlEgLuEMduyPlK54GhGxWu6Vto-_TKFHcYcu9ZoiY,3328
|
|
56
56
|
athena/threads/raw_client.py,sha256=7RhzQb32UrZMEDF5LFutYSUFXvbR7OYPXdyVSSCXoOQ,8047
|
|
57
|
-
athena/tools/__init__.py,sha256=
|
|
57
|
+
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=weCzMmaGd4WcdBQNTKawZPkDMXshQllI2WeB6LUf8UU,23449
|
|
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
65
|
athena/tools/raw_client.py,sha256=xdM0CsiywlAgolqC6Y-7WNXCRnx6aMBqSLAwZcS3OTc,53204
|
|
66
|
-
athena/tools/sheets/__init__.py,sha256=
|
|
67
|
-
athena/tools/sheets/client.py,sha256=
|
|
68
|
-
athena/tools/sheets/raw_client.py,sha256=
|
|
66
|
+
athena/tools/sheets/__init__.py,sha256=hX95w8l-Ei_8uDc1DIpsj_1Y7G_C88V6JVkn2oVtqd8,1131
|
|
67
|
+
athena/tools/sheets/client.py,sha256=zg8i4i7ZZHuMwjM5jP5yCY4uSt9_UR_lWt6XdZw3MoE,59112
|
|
68
|
+
athena/tools/sheets/raw_client.py,sha256=CmIx3uq_szoyyvSyFIkzv4eM2Sw1SZfHLkCaU3srEpo,97154
|
|
69
|
+
athena/tools/sheets/types/__init__.py,sha256=mt6oYj-xUDNvEHYVKxJmndVgDYLDSCe03cdcgTX4p9M,1213
|
|
70
|
+
athena/tools/sheets/types/update_sheet_range_request_values_item_item.py,sha256=FNOSG-GGTJ02kmcP_LAAq__8jwjuVTK_5K1zdkmGZvs,144
|
|
69
71
|
athena/tools/structured_data_extractor/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
70
72
|
athena/tools/structured_data_extractor/client.py,sha256=V1FcGZTPbrlz2d9oQZhsj3UIN1ZlZfnqRdDXj16xiPs,10623
|
|
71
73
|
athena/tools/structured_data_extractor/raw_client.py,sha256=1ZYZBssmf1jDomopeJ3PMRLql3zT4c7ssRNNLa1YrGE,11245
|
|
72
74
|
athena/tools/tasks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
73
75
|
athena/tools/tasks/client.py,sha256=c_YZ7OjQNJmPKbeeXJznXj3zo5CRFSv02dLupAdHAyo,2763
|
|
74
76
|
athena/tools/tasks/raw_client.py,sha256=Mexzuf_HcRXWNlESDGQkHHv5tC2tAo-AX3PBSuSRO3U,3812
|
|
75
|
-
athena/tools/types/__init__.py,sha256=
|
|
77
|
+
athena/tools/types/__init__.py,sha256=EBAoLXAl5YZCDYkI-YPJA0035ZRyGktyW4tspFXOQso,1180
|
|
76
78
|
athena/tools/types/tools_data_frame_request_columns_item.py,sha256=GA1FUlTV_CfSc-KToTAwFf4Exl0rr4fsweVZupztjw0,138
|
|
77
|
-
athena/types/__init__.py,sha256=
|
|
79
|
+
athena/types/__init__.py,sha256=NznHgVaeeJxftVSPXiz-yKKFLypcENs1i7fi5C8OkP0,9981
|
|
78
80
|
athena/types/aop_async_execute_response_out.py,sha256=Ggs9j5JvLCMaVwaHNyY3whA5gcUffLqc4PwuxYWI-38,1642
|
|
79
81
|
athena/types/aop_execute_request_in.py,sha256=mEsMKyNN6e90gZra733lJDC6z0bZWdc72af3B-Z5aqE,889
|
|
80
|
-
athena/types/aop_execute_response_out.py,sha256=
|
|
82
|
+
athena/types/aop_execute_response_out.py,sha256=_w6_WERRgGEVI0O_4qRfVZPLpcaa8yihWgwB4ZV0Zs8,1847
|
|
81
83
|
athena/types/asset_content_request_out.py,sha256=RYlcY6j6Ju5EQL7UquDwyTe7uqxyuO8Bg8LCsv1YiUE,652
|
|
82
84
|
athena/types/asset_node.py,sha256=3l7CUK2c_h4QT8ktSq0rFP9veF9G_V9mNe3NZlGl-xQ,804
|
|
83
85
|
athena/types/asset_screenshot_response_out.py,sha256=tiAt9xnpXWMRUnblWzUEJbXYzB412kdqKkb_02OFFGE,1069
|
|
86
|
+
athena/types/backgroundcolor.py,sha256=hdedWFf1lzaXAeX2HYxocQGIqeHP-TBQmRFxrU2UyFQ,165
|
|
87
|
+
athena/types/border_model.py,sha256=pTHlEw1kZoA7_vOVHyXO0WJmPKuwczr43uylcB8ZMTQ,646
|
|
88
|
+
athena/types/border_style.py,sha256=-3j_VzGM4SHzljbSyWZc8InthLG9GVqMyVK7uYopLEw,211
|
|
89
|
+
athena/types/borders_model.py,sha256=TvQDY5Oa2wz3QGhwuaKhb4vwtA_b0JptiNhZPCY1q5I,729
|
|
90
|
+
athena/types/cell_format.py,sha256=h4HEh4lsZ2J_yIADVxqDLnfrmP1RtyAmmQI0jglbJK0,2086
|
|
91
|
+
athena/types/cell_format_horizontal_alignment.py,sha256=UnSTOLSLVUK0zHfcOLGnZb8grjnzbnIhkh7-ikz9rLc,180
|
|
92
|
+
athena/types/cell_format_vertical_alignment.py,sha256=lvp9Em3mgHmECuUS_iH9tHrP4GcnoB_DTVKJC74tfGs,178
|
|
84
93
|
athena/types/chunk.py,sha256=9hE8tQHBknGcdY7eEgOOwd27KHbMIZXV203jaoVgx2c,747
|
|
85
94
|
athena/types/chunk_content_item.py,sha256=nKP8lq4AbbAZEKY7bRKOc7sDvqfyslCBCn8Cl_Pdz0c,1128
|
|
86
95
|
athena/types/chunk_result.py,sha256=hgrS4hMeuwTRpJ2YrMdrW_QWWWUQ82iYVVTuhFWm1X0,734
|
|
87
96
|
athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
|
|
97
|
+
athena/types/color.py,sha256=O4wDqWkVhYgl-gtTh74qwzGKSbaGe2K8m5R5ra_0o4k,155
|
|
88
98
|
athena/types/content.py,sha256=sSPPkZkHZgA_rO6UyTnR2QBK5mOqUz2pZ--B86r5584,211
|
|
89
|
-
athena/types/conversation_asset_info.py,sha256=
|
|
99
|
+
athena/types/conversation_asset_info.py,sha256=SbsWJuGwic6nliEu9ykW-q2A7SfnRt4U3e1curB8Qok,2900
|
|
100
|
+
athena/types/conversation_message.py,sha256=bJsO0T9ktciCAys28ESQJQNfY-29pI3lKxPhRb7D4ic,1084
|
|
101
|
+
athena/types/conversation_result.py,sha256=EwC27cGZWzRyrJxlyKrevndnOSDBM0DkaOUu7foeYeI,1851
|
|
90
102
|
athena/types/create_new_sheet_tab_response.py,sha256=RF8iOL3mkSc3pY0pqQhvw9IdnncxDC_-XdSUhqPODsM,892
|
|
91
103
|
athena/types/custom_agent_response.py,sha256=hzw1s7mcCI9V58l5OqK4Q59AGF_NctSx5scjJeVWckk,684
|
|
92
104
|
athena/types/data_frame_request_out.py,sha256=wyVIEEI6mqSoH6SyXTQpzLCJOWwsAlUvG9iAVlNuNOU,1076
|
|
@@ -110,19 +122,26 @@ athena/types/id.py,sha256=6fnF__LI2KYyDjZwbs8y5sik8HoYPMRF7Ljihn1MBYY,121
|
|
|
110
122
|
athena/types/image_url_content.py,sha256=SIlScFxuyfXpSU-xMLypitQK5gu_6ITjZYt64Dq9RYQ,589
|
|
111
123
|
athena/types/input_message.py,sha256=MwgLCWH9mfUM5NFEV_AVjhS12ruNOxZxSXLcYKQ0rww,854
|
|
112
124
|
athena/types/input_message_content_item.py,sha256=F-H4SNqrr__t7mPquBMyXnR8-gpyDJC6x48oJO1PXak,1163
|
|
125
|
+
athena/types/number_format_model.py,sha256=wGwp9wua7nfnCgNfNGxg5nsSFlHjM-l7l3ygBKI4iIg,905
|
|
126
|
+
athena/types/number_format_type.py,sha256=sEHIf5jCdHlUnGx2w7GoleEjdR_DexUkNINdKD4Fx-I,386
|
|
113
127
|
athena/types/paginated_assets_out.py,sha256=NJ9vwjimfaGCMPeYRKw4yEZPWYkdWpSsB60-iW8_yPI,1384
|
|
114
128
|
athena/types/prompt_message.py,sha256=5WrlKURJuD0DPhMmP3gpBNuRgGfbE9ArY0BW_OSq0P4,634
|
|
115
129
|
athena/types/public_asset_out.py,sha256=rBPFX3PKM0zxK3Qh8uICE14idg-UkDDob_xFRprO4bo,2775
|
|
116
130
|
athena/types/research_agent_response.py,sha256=BnBRbDcQEh-qNjLfvjoigTVHtkYZjwdjYU5ONjr-OWQ,656
|
|
117
131
|
athena/types/save_asset_request_out.py,sha256=_jM8B291p-dilNcrGSt3s26tjrj77c6kLpbxPymjJhA,600
|
|
132
|
+
athena/types/sheet.py,sha256=_mR3pXHXSqkYuMGch4CPayrNI5gxivMo9fu2OUQDsOI,1625
|
|
118
133
|
athena/types/sheet_operation_response.py,sha256=w-Nl11a1kii-RHTzgrt9QjpN1nuWfbF4nO4zAO2cCpw,793
|
|
119
134
|
athena/types/sql_agent_response.py,sha256=qp-VIpsZziEkx8EIF4bdhmlPqqH8a8GaCWLANJxE5kU,765
|
|
120
135
|
athena/types/structured_data_extractor_response.py,sha256=yFQ0CiFDdlZIq2X8UprEAwOPhNBqG8lzVu9_aDySW2M,1067
|
|
121
136
|
athena/types/table_row_data.py,sha256=leurR2kOfMxRhv9qVKfpU-iv1iW3400zEahAH9hwMT0,141
|
|
122
137
|
athena/types/text_content.py,sha256=tcVCPj3tHh5zQcTElr2tdCIjjfx3ZI63rKIlaG8vo64,592
|
|
138
|
+
athena/types/text_format_model.py,sha256=hV9lpxsS8d206g5SGVbqcFkWz9ILdPBb2jBPNMuwo-s,1032
|
|
139
|
+
athena/types/textrotation.py,sha256=wIAadKprL9_UMxUM_V3EJ9XOgC_Rz6otcrnfLXJdqX8,141
|
|
140
|
+
athena/types/theme_color.py,sha256=pSt2QC4JB8qxRhUZX8Hgz_2eEX-ou_lWExIIHcjxZ-A,558
|
|
123
141
|
athena/types/thread_status_response_out.py,sha256=UuSAvs9woL1i8RwvVRKsFUufN4A9jO3jsV47YMckvQU,1219
|
|
124
142
|
athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
|
|
143
|
+
athena/types/wrap_strategy.py,sha256=ykPFCr91HGvzIk9BRppW_UBWoUamFxDhLO_ETzQgVKI,164
|
|
125
144
|
athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
|
|
126
|
-
athena_intelligence-0.1.
|
|
127
|
-
athena_intelligence-0.1.
|
|
128
|
-
athena_intelligence-0.1.
|
|
145
|
+
athena_intelligence-0.1.243.dist-info/METADATA,sha256=hiTt0ifPFjODaVUBZxeifuQbCXn87v0vAHLYGpjdijI,5440
|
|
146
|
+
athena_intelligence-0.1.243.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
147
|
+
athena_intelligence-0.1.243.dist-info/RECORD,,
|
|
File without changes
|