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.
@@ -1,7 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- from .theme_color import ThemeColor
6
-
7
- Backgroundcolor = typing.Union[str, ThemeColor]
athena/types/color.py DELETED
@@ -1,7 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- from .theme_color import ThemeColor
6
-
7
- Color = typing.Union[str, ThemeColor]
@@ -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
@@ -1,7 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- from .theme_color import ThemeColor
6
-
7
- Tabcolor = typing.Union[str, ThemeColor]