athena-intelligence 0.1.10__tar.gz → 0.1.12__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.10 → athena_intelligence-0.1.12}/PKG-INFO +1 -1
  2. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/pyproject.toml +1 -1
  3. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/client_wrapper.py +1 -1
  4. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/message/client.py +2 -2
  5. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/README.md +0 -0
  6. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/__init__.py +0 -0
  7. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/client.py +0 -0
  8. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/__init__.py +0 -0
  9. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/api_error.py +0 -0
  10. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/datetime_utils.py +0 -0
  11. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/file.py +0 -0
  12. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/jsonable_encoder.py +0 -0
  13. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/remove_none_from_dict.py +0 -0
  14. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/core/request_options.py +0 -0
  15. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/environment.py +0 -0
  16. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/errors/__init__.py +0 -0
  17. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/errors/unprocessable_entity_error.py +0 -0
  18. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/message/__init__.py +0 -0
  19. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/py.typed +0 -0
  20. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/__init__.py +0 -0
  21. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/http_validation_error.py +0 -0
  22. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/message_out.py +0 -0
  23. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/message_out_dto.py +0 -0
  24. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/model.py +0 -0
  25. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/status_enum.py +0 -0
  26. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/tools.py +0 -0
  27. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/src/athena/types/validation_error.py +0 -0
  28. {athena_intelligence-0.1.10 → athena_intelligence-0.1.12}/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.10
3
+ Version: 0.1.12
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.10"
3
+ version = "0.1.12"
4
4
  description = ""
5
5
  readme = "README.md"
6
6
  authors = []
@@ -14,7 +14,7 @@ class BaseClientWrapper:
14
14
  headers: typing.Dict[str, str] = {
15
15
  "X-Fern-Language": "Python",
16
16
  "X-Fern-SDK-Name": "athena-intelligence",
17
- "X-Fern-SDK-Version": "0.1.10",
17
+ "X-Fern-SDK-Version": "0.1.12",
18
18
  }
19
19
  headers["X-API-KEY"] = self.api_key
20
20
  return headers
@@ -61,7 +61,7 @@ class MessageClient:
61
61
  )
62
62
  client.message.submit(
63
63
  content="visit www.athenaintelligence.ai and summarize the website in one paragraph",
64
- model=Model.GPT_4_TURBO_PREVIEW,
64
+ model=Model.GPT_3_5_TURBO,
65
65
  tools=[Tools.SEARCH, Tools.BROWSE, Tools.SEARCH],
66
66
  )
67
67
  """
@@ -189,7 +189,7 @@ class AsyncMessageClient:
189
189
  )
190
190
  await client.message.submit(
191
191
  content="visit www.athenaintelligence.ai and summarize the website in one paragraph",
192
- model=Model.GPT_4_TURBO_PREVIEW,
192
+ model=Model.GPT_3_5_TURBO,
193
193
  tools=[Tools.SEARCH, Tools.BROWSE, Tools.SEARCH],
194
194
  )
195
195
  """