athena-intelligence 0.1.266__py3-none-any.whl → 0.1.268__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/assets/client.py CHANGED
@@ -89,6 +89,7 @@ class AssetsClient:
89
89
  description: typing.Optional[str] = OMIT,
90
90
  parent_folder_id: typing.Optional[str] = OMIT,
91
91
  project_type: typing.Optional[str] = OMIT,
92
+ share_with_emails: typing.Optional[typing.Sequence[str]] = OMIT,
92
93
  tags: typing.Optional[typing.Sequence[str]] = OMIT,
93
94
  request_options: typing.Optional[RequestOptions] = None,
94
95
  ) -> CreateProjectResponseOut:
@@ -112,6 +113,9 @@ class AssetsClient:
112
113
  project_type : typing.Optional[str]
113
114
  User-defined project type (e.g., 'candidate', 'user', 'company')
114
115
 
116
+ share_with_emails : typing.Optional[typing.Sequence[str]]
117
+ Optional list of email addresses to share the project with (VIEW permission)
118
+
115
119
  tags : typing.Optional[typing.Sequence[str]]
116
120
  Optional list of tags for categorizing the project
117
121
 
@@ -140,6 +144,7 @@ class AssetsClient:
140
144
  description="Candidate profile for senior software engineer position",
141
145
  parent_folder_id="asset_folder_123",
142
146
  project_type="candidate",
147
+ share_with_emails=["colleague@example.com", "manager@example.com"],
143
148
  tags=["engineering", "senior", "active"],
144
149
  title="John Doe - Software Engineer",
145
150
  )
@@ -150,6 +155,7 @@ class AssetsClient:
150
155
  description=description,
151
156
  parent_folder_id=parent_folder_id,
152
157
  project_type=project_type,
158
+ share_with_emails=share_with_emails,
153
159
  tags=tags,
154
160
  request_options=request_options,
155
161
  )
@@ -270,6 +276,7 @@ class AsyncAssetsClient:
270
276
  description: typing.Optional[str] = OMIT,
271
277
  parent_folder_id: typing.Optional[str] = OMIT,
272
278
  project_type: typing.Optional[str] = OMIT,
279
+ share_with_emails: typing.Optional[typing.Sequence[str]] = OMIT,
273
280
  tags: typing.Optional[typing.Sequence[str]] = OMIT,
274
281
  request_options: typing.Optional[RequestOptions] = None,
275
282
  ) -> CreateProjectResponseOut:
@@ -293,6 +300,9 @@ class AsyncAssetsClient:
293
300
  project_type : typing.Optional[str]
294
301
  User-defined project type (e.g., 'candidate', 'user', 'company')
295
302
 
303
+ share_with_emails : typing.Optional[typing.Sequence[str]]
304
+ Optional list of email addresses to share the project with (VIEW permission)
305
+
296
306
  tags : typing.Optional[typing.Sequence[str]]
297
307
  Optional list of tags for categorizing the project
298
308
 
@@ -326,6 +336,7 @@ class AsyncAssetsClient:
326
336
  description="Candidate profile for senior software engineer position",
327
337
  parent_folder_id="asset_folder_123",
328
338
  project_type="candidate",
339
+ share_with_emails=["colleague@example.com", "manager@example.com"],
329
340
  tags=["engineering", "senior", "active"],
330
341
  title="John Doe - Software Engineer",
331
342
  )
@@ -339,6 +350,7 @@ class AsyncAssetsClient:
339
350
  description=description,
340
351
  parent_folder_id=parent_folder_id,
341
352
  project_type=project_type,
353
+ share_with_emails=share_with_emails,
342
354
  tags=tags,
343
355
  request_options=request_options,
344
356
  )
@@ -105,6 +105,7 @@ class RawAssetsClient:
105
105
  description: typing.Optional[str] = OMIT,
106
106
  parent_folder_id: typing.Optional[str] = OMIT,
107
107
  project_type: typing.Optional[str] = OMIT,
108
+ share_with_emails: typing.Optional[typing.Sequence[str]] = OMIT,
108
109
  tags: typing.Optional[typing.Sequence[str]] = OMIT,
109
110
  request_options: typing.Optional[RequestOptions] = None,
110
111
  ) -> HttpResponse[CreateProjectResponseOut]:
@@ -128,6 +129,9 @@ class RawAssetsClient:
128
129
  project_type : typing.Optional[str]
129
130
  User-defined project type (e.g., 'candidate', 'user', 'company')
130
131
 
132
+ share_with_emails : typing.Optional[typing.Sequence[str]]
133
+ Optional list of email addresses to share the project with (VIEW permission)
134
+
131
135
  tags : typing.Optional[typing.Sequence[str]]
132
136
  Optional list of tags for categorizing the project
133
137
 
@@ -147,6 +151,7 @@ class RawAssetsClient:
147
151
  "description": description,
148
152
  "parent_folder_id": parent_folder_id,
149
153
  "project_type": project_type,
154
+ "share_with_emails": share_with_emails,
150
155
  "tags": tags,
151
156
  "title": title,
152
157
  },
@@ -359,6 +364,7 @@ class AsyncRawAssetsClient:
359
364
  description: typing.Optional[str] = OMIT,
360
365
  parent_folder_id: typing.Optional[str] = OMIT,
361
366
  project_type: typing.Optional[str] = OMIT,
367
+ share_with_emails: typing.Optional[typing.Sequence[str]] = OMIT,
362
368
  tags: typing.Optional[typing.Sequence[str]] = OMIT,
363
369
  request_options: typing.Optional[RequestOptions] = None,
364
370
  ) -> AsyncHttpResponse[CreateProjectResponseOut]:
@@ -382,6 +388,9 @@ class AsyncRawAssetsClient:
382
388
  project_type : typing.Optional[str]
383
389
  User-defined project type (e.g., 'candidate', 'user', 'company')
384
390
 
391
+ share_with_emails : typing.Optional[typing.Sequence[str]]
392
+ Optional list of email addresses to share the project with (VIEW permission)
393
+
385
394
  tags : typing.Optional[typing.Sequence[str]]
386
395
  Optional list of tags for categorizing the project
387
396
 
@@ -401,6 +410,7 @@ class AsyncRawAssetsClient:
401
410
  "description": description,
402
411
  "parent_folder_id": parent_folder_id,
403
412
  "project_type": project_type,
413
+ "share_with_emails": share_with_emails,
404
414
  "tags": tags,
405
415
  "title": title,
406
416
  },
@@ -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.266",
25
+ "User-Agent": "athena-intelligence/0.1.268",
26
26
  "X-Fern-Language": "Python",
27
27
  "X-Fern-SDK-Name": "athena-intelligence",
28
- "X-Fern-SDK-Version": "0.1.266",
28
+ "X-Fern-SDK-Version": "0.1.268",
29
29
  **(self.get_custom_headers() or {}),
30
30
  }
31
31
  headers["X-API-KEY"] = self.api_key
@@ -37,6 +37,11 @@ class ConversationAssetInfo(UniversalBaseModel):
37
37
  User ID who created the conversation
38
38
  """
39
39
 
40
+ error: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = pydantic.Field(default=None)
41
+ """
42
+ Error details if the conversation execution failed
43
+ """
44
+
40
45
  last_channel: typing.Optional[str] = pydantic.Field(default=None)
41
46
  """
42
47
  Last active channel for the conversation
@@ -22,6 +22,11 @@ class ThreadStatusResponseOut(UniversalBaseModel):
22
22
  ISO timestamp when thread was created
23
23
  """
24
24
 
25
+ error: typing.Optional[str] = pydantic.Field(default=None)
26
+ """
27
+ Error message if thread execution failed
28
+ """
29
+
25
30
  status: str = pydantic.Field()
26
31
  """
27
32
  Current status of the thread (e.g., 'running', 'completed', 'failed')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: athena-intelligence
3
- Version: 0.1.266
3
+ Version: 0.1.268
4
4
  Summary: Athena Intelligence Python Library
5
5
  Requires-Python: >=3.9,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -18,13 +18,13 @@ athena/aop/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
18
18
  athena/aop/client.py,sha256=Fg7rNF1k78MIKDELy8GE-DfAaJvHFUUBG5haMR_Vefo,6758
19
19
  athena/aop/raw_client.py,sha256=ZQRtNNirk1xfbkKHADxSCPB0UQjf4HO5l-6z7W936X8,18509
20
20
  athena/assets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
21
- athena/assets/client.py,sha256=4rBbhm4icQx6hmNJ6wgoi89RHd5a1M4h5_p6OMJeEVA,12831
22
- athena/assets/raw_client.py,sha256=IaZ0vK_IRVgofdYr2fH6vW2zPejJoMHItqXkgeCOQ_8,22059
21
+ athena/assets/client.py,sha256=FX4Wg9atWRAzHiyyFbYQAZM679_zMNxg3OSFIANmqcc,13551
22
+ athena/assets/raw_client.py,sha256=yQ7FgNPGYPfB2pwyYMB0AU6bnnWxzN7kzBLBBVg7-Yo,22629
23
23
  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=9jn5vRm8XAzCvSzrylcVLSjf7G-RkwHQaM7Lm-8VkNs,2392
27
+ athena/core/client_wrapper.py,sha256=TqnePk9QTQpcfaC2d_-sX4TUbLj7Vn99XyAKX3tKFkA,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
@@ -96,7 +96,7 @@ athena/types/chunk_result.py,sha256=hgrS4hMeuwTRpJ2YrMdrW_QWWWUQ82iYVVTuhFWm1X0,
96
96
  athena/types/chunk_result_chunk_id.py,sha256=pzJ6yL6NdUtseoeU4Kw2jlxSTMCVew2TrjhR1MbCuFg,124
97
97
  athena/types/color.py,sha256=O4wDqWkVhYgl-gtTh74qwzGKSbaGe2K8m5R5ra_0o4k,155
98
98
  athena/types/content.py,sha256=sSPPkZkHZgA_rO6UyTnR2QBK5mOqUz2pZ--B86r5584,211
99
- athena/types/conversation_asset_info.py,sha256=SbsWJuGwic6nliEu9ykW-q2A7SfnRt4U3e1curB8Qok,2900
99
+ athena/types/conversation_asset_info.py,sha256=xqZMI9W77vPj8jjiNbtIMZhPOeEamCZ0eXRS1Cxiuek,3077
100
100
  athena/types/conversation_message.py,sha256=bJsO0T9ktciCAys28ESQJQNfY-29pI3lKxPhRb7D4ic,1084
101
101
  athena/types/conversation_result.py,sha256=EwC27cGZWzRyrJxlyKrevndnOSDBM0DkaOUu7foeYeI,1851
102
102
  athena/types/create_new_sheet_tab_response.py,sha256=RF8iOL3mkSc3pY0pqQhvw9IdnncxDC_-XdSUhqPODsM,892
@@ -142,10 +142,10 @@ athena/types/text_content.py,sha256=tcVCPj3tHh5zQcTElr2tdCIjjfx3ZI63rKIlaG8vo64,
142
142
  athena/types/text_format_model.py,sha256=hV9lpxsS8d206g5SGVbqcFkWz9ILdPBb2jBPNMuwo-s,1032
143
143
  athena/types/textrotation.py,sha256=wIAadKprL9_UMxUM_V3EJ9XOgC_Rz6otcrnfLXJdqX8,141
144
144
  athena/types/theme_color.py,sha256=pSt2QC4JB8qxRhUZX8Hgz_2eEX-ou_lWExIIHcjxZ-A,558
145
- athena/types/thread_status_response_out.py,sha256=UuSAvs9woL1i8RwvVRKsFUufN4A9jO3jsV47YMckvQU,1219
145
+ athena/types/thread_status_response_out.py,sha256=g8OA1dt4u_h1gBd_8NGqiGL-7-zr6rDwYxpzW5VgqHI,1344
146
146
  athena/types/type.py,sha256=Gvs56nvBMPcQpOZkfPocGNNb7S05PuINianbT309QAQ,146
147
147
  athena/types/wrap_strategy.py,sha256=ykPFCr91HGvzIk9BRppW_UBWoUamFxDhLO_ETzQgVKI,164
148
148
  athena/version.py,sha256=tnXYUugs9zF_pkVdem-QBorKSuhEOOuetkR57dADDxE,86
149
- athena_intelligence-0.1.266.dist-info/METADATA,sha256=NtDs0PoTHKyXiwhcNlVLoIBYv0zLVYHpitR9yzHloJE,5440
150
- athena_intelligence-0.1.266.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
151
- athena_intelligence-0.1.266.dist-info/RECORD,,
149
+ athena_intelligence-0.1.268.dist-info/METADATA,sha256=_tvaRa_Ypl4eXchyexk4B5czzfGpjipYkUzfwu3KSSU,5440
150
+ athena_intelligence-0.1.268.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
151
+ athena_intelligence-0.1.268.dist-info/RECORD,,