athena-intelligence 0.1.242__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/aop/client.py CHANGED
@@ -32,7 +32,7 @@ class AopClient:
32
32
  self, *, request: AopExecuteRequestIn, request_options: typing.Optional[RequestOptions] = None
33
33
  ) -> AopExecuteResponseOut:
34
34
  """
35
- Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
35
+ ⚠️ DEPRECATED: This endpoint is deprecated. Please use /aop/execute-async instead for better performance and reliability. Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
36
36
 
37
37
  Parameters
38
38
  ----------
@@ -118,7 +118,7 @@ class AsyncAopClient:
118
118
  self, *, request: AopExecuteRequestIn, request_options: typing.Optional[RequestOptions] = None
119
119
  ) -> AopExecuteResponseOut:
120
120
  """
121
- Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
121
+ ⚠️ DEPRECATED: This endpoint is deprecated. Please use /aop/execute-async instead for better performance and reliability. Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
122
122
 
123
123
  Parameters
124
124
  ----------
athena/aop/raw_client.py CHANGED
@@ -30,7 +30,7 @@ class RawAopClient:
30
30
  self, *, request: AopExecuteRequestIn, request_options: typing.Optional[RequestOptions] = None
31
31
  ) -> HttpResponse[AopExecuteResponseOut]:
32
32
  """
33
- Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
33
+ ⚠️ DEPRECATED: This endpoint is deprecated. Please use /aop/execute-async instead for better performance and reliability. Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
34
34
 
35
35
  Parameters
36
36
  ----------
@@ -235,7 +235,7 @@ class AsyncRawAopClient:
235
235
  self, *, request: AopExecuteRequestIn, request_options: typing.Optional[RequestOptions] = None
236
236
  ) -> AsyncHttpResponse[AopExecuteResponseOut]:
237
237
  """
238
- Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
238
+ ⚠️ DEPRECATED: This endpoint is deprecated. Please use /aop/execute-async instead for better performance and reliability. Execute an existing Agent Operating Procedure (AOP) asset with optional user inputs. AOPs are pre-configured AI workflows that can perform complex tasks like research, analysis, and content generation.
239
239
 
240
240
  Parameters
241
241
  ----------
@@ -22,10 +22,10 @@ class BaseClientWrapper:
22
22
 
23
23
  def get_headers(self) -> typing.Dict[str, str]:
24
24
  headers: typing.Dict[str, str] = {
25
- "User-Agent": "athena-intelligence/0.1.242",
25
+ "User-Agent": "athena-intelligence/0.1.243",
26
26
  "X-Fern-Language": "Python",
27
27
  "X-Fern-SDK-Name": "athena-intelligence",
28
- "X-Fern-SDK-Version": "0.1.242",
28
+ "X-Fern-SDK-Version": "0.1.243",
29
29
  **(self.get_custom_headers() or {}),
30
30
  }
31
31
  headers["X-API-KEY"] = self.api_key
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.242
3
+ Version: 0.1.243
4
4
  Summary: Athena Intelligence Python Library
5
5
  Requires-Python: >=3.9,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -15,8 +15,8 @@ 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=xdmDUTR_XAKLX3Oo2lRrnpuh34zZtU18yBI0KTsOSGY,6506
19
- athena/aop/raw_client.py,sha256=NX_nbVe8sIUvN_jzmq4dDIvr1NQqk0gmi_eeI7Ep8gY,18257
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
21
  athena/assets/client.py,sha256=d7PrFlPORWRE6M8g7paJ7O45hf7wGUex093FhW1lESE,5395
22
22
  athena/assets/raw_client.py,sha256=TW6dCb1i68p-0sf4_B2F0H8SK-kk9sIHFAuwfTEg5GQ,7077
@@ -24,7 +24,7 @@ athena/base_client.py,sha256=IlYf1TLV3w-JZPATzyT-b5wSrjKm-fsT_3bC172GpVI,9576
24
24
  athena/client.py,sha256=I-aFsGhcViOdOeaWayhMkaMkV5545Yz2Gb-BoVQvhE4,22317
25
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=UvVcHkNKW-AjL0yveI7hTeewDLVjNbNlimUJbp9GwKY,2392
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
30
  athena/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
@@ -142,6 +142,6 @@ athena/types/thread_status_response_out.py,sha256=UuSAvs9woL1i8RwvVRKsFUufN4A9jO
142
142
  athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
143
143
  athena/types/wrap_strategy.py,sha256=ykPFCr91HGvzIk9BRppW_UBWoUamFxDhLO_ETzQgVKI,164
144
144
  athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
145
- athena_intelligence-0.1.242.dist-info/METADATA,sha256=W2G4Qmlc8j1QoHZQFIJyk1BPgqFwTttThWlImGfRliE,5440
146
- athena_intelligence-0.1.242.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
147
- athena_intelligence-0.1.242.dist-info/RECORD,,
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,,