athena-intelligence 0.1.260__py3-none-any.whl → 0.1.375__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 +9 -15
- athena/assets/client.py +278 -0
- athena/assets/raw_client.py +416 -0
- athena/client.py +9 -13
- athena/core/client_wrapper.py +2 -2
- athena/environment.py +0 -2
- athena/tools/client.py +4 -15
- athena/tools/raw_client.py +12 -17
- athena/types/__init__.py +9 -15
- athena/types/border_model.py +8 -3
- athena/types/cell_format.py +15 -4
- athena/types/conversation_asset_info.py +5 -0
- athena/types/creatable_asset_type.py +5 -0
- athena/types/create_asset_response_out.py +46 -0
- athena/types/create_project_response_out.py +51 -0
- athena/types/dimension_properties.py +1 -1
- athena/types/sheet.py +13 -6
- athena/types/text_format_model.py +11 -2
- athena/types/thread_status_response_out.py +5 -0
- {athena_intelligence-0.1.260.dist-info → athena_intelligence-0.1.375.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.260.dist-info → athena_intelligence-0.1.375.dist-info}/RECORD +22 -24
- athena/types/backgroundcolor.py +0 -7
- athena/types/color.py +0 -7
- athena/types/document_chunk.py +0 -24
- athena/types/file_chunk_request_out.py +0 -24
- athena/types/tabcolor.py +0 -7
- {athena_intelligence-0.1.260.dist-info → athena_intelligence-0.1.375.dist-info}/WHEEL +0 -0
athena/types/backgroundcolor.py
DELETED
athena/types/color.py
DELETED
athena/types/document_chunk.py
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
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 DocumentChunk(UniversalBaseModel):
|
|
10
|
-
"""
|
|
11
|
-
A document chunk.
|
|
12
|
-
"""
|
|
13
|
-
|
|
14
|
-
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
|
|
15
|
-
page_content: str
|
|
16
|
-
|
|
17
|
-
if IS_PYDANTIC_V2:
|
|
18
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
19
|
-
else:
|
|
20
|
-
|
|
21
|
-
class Config:
|
|
22
|
-
frozen = True
|
|
23
|
-
smart_union = True
|
|
24
|
-
extra = pydantic.Extra.allow
|
|
@@ -1,24 +0,0 @@
|
|
|
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 .document_chunk import DocumentChunk
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class FileChunkRequestOut(UniversalBaseModel):
|
|
11
|
-
"""
|
|
12
|
-
Response model for a file chunk.
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
chunks: typing.Dict[str, typing.List[DocumentChunk]]
|
|
16
|
-
|
|
17
|
-
if IS_PYDANTIC_V2:
|
|
18
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
19
|
-
else:
|
|
20
|
-
|
|
21
|
-
class Config:
|
|
22
|
-
frozen = True
|
|
23
|
-
smart_union = True
|
|
24
|
-
extra = pydantic.Extra.allow
|
athena/types/tabcolor.py
DELETED
|
File without changes
|