athena-intelligence 0.1.8__tar.gz → 0.1.9__tar.gz

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 (28) hide show
  1. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/PKG-INFO +1 -1
  2. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/pyproject.toml +1 -1
  3. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/__init__.py +1 -1
  4. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/client.py +1 -1
  5. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/client_wrapper.py +1 -1
  6. {athena_intelligence-0.1.8/src/athena/resources → athena_intelligence-0.1.9/src/athena}/message/client.py +11 -11
  7. athena_intelligence-0.1.8/src/athena/resources/__init__.py +0 -5
  8. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/README.md +0 -0
  9. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/__init__.py +0 -0
  10. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/api_error.py +0 -0
  11. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/datetime_utils.py +0 -0
  12. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/file.py +0 -0
  13. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/jsonable_encoder.py +0 -0
  14. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/remove_none_from_dict.py +0 -0
  15. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/core/request_options.py +0 -0
  16. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/environment.py +0 -0
  17. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/errors/__init__.py +0 -0
  18. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/errors/unprocessable_entity_error.py +0 -0
  19. {athena_intelligence-0.1.8/src/athena/resources → athena_intelligence-0.1.9/src/athena}/message/__init__.py +0 -0
  20. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/py.typed +0 -0
  21. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/__init__.py +0 -0
  22. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/http_validation_error.py +0 -0
  23. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/message_out.py +0 -0
  24. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/message_out_dto.py +0 -0
  25. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/model.py +0 -0
  26. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/tools.py +0 -0
  27. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/validation_error.py +0 -0
  28. {athena_intelligence-0.1.8 → athena_intelligence-0.1.9}/src/athena/types/validation_error_loc_item.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "athena-intelligence"
3
- version = "0.1.8"
3
+ version = "0.1.9"
4
4
  description = ""
5
5
  readme = "README.md"
6
6
  authors = []
@@ -2,7 +2,7 @@
2
2
 
3
3
  from .types import HttpValidationError, MessageOut, MessageOutDto, Model, Tools, ValidationError, ValidationErrorLocItem
4
4
  from .errors import UnprocessableEntityError
5
- from .resources import message
5
+ from . import message
6
6
  from .environment import AthenaEnvironment
7
7
 
8
8
  __all__ = [
@@ -6,7 +6,7 @@ import httpx
6
6
 
7
7
  from .core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8
8
  from .environment import AthenaEnvironment
9
- from .resources.message.client import AsyncMessageClient, MessageClient
9
+ from .message.client import AsyncMessageClient, MessageClient
10
10
 
11
11
 
12
12
  class Athena:
@@ -15,7 +15,7 @@ class BaseClientWrapper:
15
15
  headers: typing.Dict[str, str] = {
16
16
  "X-Fern-Language": "Python",
17
17
  "X-Fern-SDK-Name": "athena-intelligence",
18
- "X-Fern-SDK-Version": "0.1.8",
18
+ "X-Fern-SDK-Version": "0.1.9",
19
19
  }
20
20
  headers["X-API-KEY"] = self._api_key
21
21
  headers["Authorization"] = f"Bearer {self._get_token()}"
@@ -4,17 +4,17 @@ import typing
4
4
  import urllib.parse
5
5
  from json.decoder import JSONDecodeError
6
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.message_out import MessageOut
15
- from ...types.message_out_dto import MessageOutDto
16
- from ...types.model import Model
17
- from ...types.tools import Tools
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.message_out import MessageOut
15
+ from ..types.message_out_dto import MessageOutDto
16
+ from ..types.model import Model
17
+ from ..types.tools import Tools
18
18
 
19
19
  try:
20
20
  import pydantic.v1 as pydantic # type: ignore
@@ -1,5 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- from . import message
4
-
5
- __all__ = ["message"]