athena-intelligence 0.1.265__py3-none-any.whl → 0.1.267__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 +12 -0
- athena/assets/raw_client.py +10 -0
- athena/core/client_wrapper.py +2 -2
- athena/types/create_project_response_out.py +5 -0
- {athena_intelligence-0.1.265.dist-info → athena_intelligence-0.1.267.dist-info}/METADATA +1 -1
- {athena_intelligence-0.1.265.dist-info → athena_intelligence-0.1.267.dist-info}/RECORD +7 -7
- {athena_intelligence-0.1.265.dist-info → athena_intelligence-0.1.267.dist-info}/WHEEL +0 -0
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
|
+
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
92
93
|
request_options: typing.Optional[RequestOptions] = None,
|
|
93
94
|
) -> CreateProjectResponseOut:
|
|
94
95
|
"""
|
|
@@ -111,6 +112,9 @@ class AssetsClient:
|
|
|
111
112
|
project_type : typing.Optional[str]
|
|
112
113
|
User-defined project type (e.g., 'candidate', 'user', 'company')
|
|
113
114
|
|
|
115
|
+
tags : typing.Optional[typing.Sequence[str]]
|
|
116
|
+
Optional list of tags for categorizing the project
|
|
117
|
+
|
|
114
118
|
request_options : typing.Optional[RequestOptions]
|
|
115
119
|
Request-specific configuration.
|
|
116
120
|
|
|
@@ -136,6 +140,7 @@ class AssetsClient:
|
|
|
136
140
|
description="Candidate profile for senior software engineer position",
|
|
137
141
|
parent_folder_id="asset_folder_123",
|
|
138
142
|
project_type="candidate",
|
|
143
|
+
tags=["engineering", "senior", "active"],
|
|
139
144
|
title="John Doe - Software Engineer",
|
|
140
145
|
)
|
|
141
146
|
"""
|
|
@@ -145,6 +150,7 @@ class AssetsClient:
|
|
|
145
150
|
description=description,
|
|
146
151
|
parent_folder_id=parent_folder_id,
|
|
147
152
|
project_type=project_type,
|
|
153
|
+
tags=tags,
|
|
148
154
|
request_options=request_options,
|
|
149
155
|
)
|
|
150
156
|
return _response.data
|
|
@@ -264,6 +270,7 @@ class AsyncAssetsClient:
|
|
|
264
270
|
description: typing.Optional[str] = OMIT,
|
|
265
271
|
parent_folder_id: typing.Optional[str] = OMIT,
|
|
266
272
|
project_type: typing.Optional[str] = OMIT,
|
|
273
|
+
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
267
274
|
request_options: typing.Optional[RequestOptions] = None,
|
|
268
275
|
) -> CreateProjectResponseOut:
|
|
269
276
|
"""
|
|
@@ -286,6 +293,9 @@ class AsyncAssetsClient:
|
|
|
286
293
|
project_type : typing.Optional[str]
|
|
287
294
|
User-defined project type (e.g., 'candidate', 'user', 'company')
|
|
288
295
|
|
|
296
|
+
tags : typing.Optional[typing.Sequence[str]]
|
|
297
|
+
Optional list of tags for categorizing the project
|
|
298
|
+
|
|
289
299
|
request_options : typing.Optional[RequestOptions]
|
|
290
300
|
Request-specific configuration.
|
|
291
301
|
|
|
@@ -316,6 +326,7 @@ class AsyncAssetsClient:
|
|
|
316
326
|
description="Candidate profile for senior software engineer position",
|
|
317
327
|
parent_folder_id="asset_folder_123",
|
|
318
328
|
project_type="candidate",
|
|
329
|
+
tags=["engineering", "senior", "active"],
|
|
319
330
|
title="John Doe - Software Engineer",
|
|
320
331
|
)
|
|
321
332
|
|
|
@@ -328,6 +339,7 @@ class AsyncAssetsClient:
|
|
|
328
339
|
description=description,
|
|
329
340
|
parent_folder_id=parent_folder_id,
|
|
330
341
|
project_type=project_type,
|
|
342
|
+
tags=tags,
|
|
331
343
|
request_options=request_options,
|
|
332
344
|
)
|
|
333
345
|
return _response.data
|
athena/assets/raw_client.py
CHANGED
|
@@ -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
|
+
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
108
109
|
request_options: typing.Optional[RequestOptions] = None,
|
|
109
110
|
) -> HttpResponse[CreateProjectResponseOut]:
|
|
110
111
|
"""
|
|
@@ -127,6 +128,9 @@ class RawAssetsClient:
|
|
|
127
128
|
project_type : typing.Optional[str]
|
|
128
129
|
User-defined project type (e.g., 'candidate', 'user', 'company')
|
|
129
130
|
|
|
131
|
+
tags : typing.Optional[typing.Sequence[str]]
|
|
132
|
+
Optional list of tags for categorizing the project
|
|
133
|
+
|
|
130
134
|
request_options : typing.Optional[RequestOptions]
|
|
131
135
|
Request-specific configuration.
|
|
132
136
|
|
|
@@ -143,6 +147,7 @@ class RawAssetsClient:
|
|
|
143
147
|
"description": description,
|
|
144
148
|
"parent_folder_id": parent_folder_id,
|
|
145
149
|
"project_type": project_type,
|
|
150
|
+
"tags": tags,
|
|
146
151
|
"title": title,
|
|
147
152
|
},
|
|
148
153
|
headers={
|
|
@@ -354,6 +359,7 @@ class AsyncRawAssetsClient:
|
|
|
354
359
|
description: typing.Optional[str] = OMIT,
|
|
355
360
|
parent_folder_id: typing.Optional[str] = OMIT,
|
|
356
361
|
project_type: typing.Optional[str] = OMIT,
|
|
362
|
+
tags: typing.Optional[typing.Sequence[str]] = OMIT,
|
|
357
363
|
request_options: typing.Optional[RequestOptions] = None,
|
|
358
364
|
) -> AsyncHttpResponse[CreateProjectResponseOut]:
|
|
359
365
|
"""
|
|
@@ -376,6 +382,9 @@ class AsyncRawAssetsClient:
|
|
|
376
382
|
project_type : typing.Optional[str]
|
|
377
383
|
User-defined project type (e.g., 'candidate', 'user', 'company')
|
|
378
384
|
|
|
385
|
+
tags : typing.Optional[typing.Sequence[str]]
|
|
386
|
+
Optional list of tags for categorizing the project
|
|
387
|
+
|
|
379
388
|
request_options : typing.Optional[RequestOptions]
|
|
380
389
|
Request-specific configuration.
|
|
381
390
|
|
|
@@ -392,6 +401,7 @@ class AsyncRawAssetsClient:
|
|
|
392
401
|
"description": description,
|
|
393
402
|
"parent_folder_id": parent_folder_id,
|
|
394
403
|
"project_type": project_type,
|
|
404
|
+
"tags": tags,
|
|
395
405
|
"title": title,
|
|
396
406
|
},
|
|
397
407
|
headers={
|
athena/core/client_wrapper.py
CHANGED
|
@@ -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.
|
|
25
|
+
"User-Agent": "athena-intelligence/0.1.267",
|
|
26
26
|
"X-Fern-Language": "Python",
|
|
27
27
|
"X-Fern-SDK-Name": "athena-intelligence",
|
|
28
|
-
"X-Fern-SDK-Version": "0.1.
|
|
28
|
+
"X-Fern-SDK-Version": "0.1.267",
|
|
29
29
|
**(self.get_custom_headers() or {}),
|
|
30
30
|
}
|
|
31
31
|
headers["X-API-KEY"] = self.api_key
|
|
@@ -31,6 +31,11 @@ class CreateProjectResponseOut(UniversalBaseModel):
|
|
|
31
31
|
Type of the project
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
+
tags: typing.Optional[typing.List[str]] = pydantic.Field(default=None)
|
|
35
|
+
"""
|
|
36
|
+
Tags associated with the project
|
|
37
|
+
"""
|
|
38
|
+
|
|
34
39
|
title: str = pydantic.Field()
|
|
35
40
|
"""
|
|
36
41
|
Title of the created project
|
|
@@ -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=
|
|
22
|
-
athena/assets/raw_client.py,sha256=
|
|
21
|
+
athena/assets/client.py,sha256=4rBbhm4icQx6hmNJ6wgoi89RHd5a1M4h5_p6OMJeEVA,12831
|
|
22
|
+
athena/assets/raw_client.py,sha256=IaZ0vK_IRVgofdYr2fH6vW2zPejJoMHItqXkgeCOQ_8,22059
|
|
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=
|
|
27
|
+
athena/core/client_wrapper.py,sha256=xmirjU8Wrmsxc-J8r4zgwWAMR1HEMhRodn9P91QdxGw,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
|
|
@@ -100,7 +100,7 @@ athena/types/conversation_asset_info.py,sha256=SbsWJuGwic6nliEu9ykW-q2A7SfnRt4U3
|
|
|
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
|
|
103
|
-
athena/types/create_project_response_out.py,sha256=
|
|
103
|
+
athena/types/create_project_response_out.py,sha256=GPz5GL4MwhvIlR4WZk0H79T7Qyb0nGP1aXYsAQSlIdA,1285
|
|
104
104
|
athena/types/custom_agent_response.py,sha256=hzw1s7mcCI9V58l5OqK4Q59AGF_NctSx5scjJeVWckk,684
|
|
105
105
|
athena/types/data_frame_request_out.py,sha256=wyVIEEI6mqSoH6SyXTQpzLCJOWwsAlUvG9iAVlNuNOU,1076
|
|
106
106
|
athena/types/data_frame_request_out_columns_item.py,sha256=9cjzciFv6C8n8Griytt_q_8ovkzHViS5tvUcMDfkfKE,143
|
|
@@ -146,6 +146,6 @@ athena/types/thread_status_response_out.py,sha256=UuSAvs9woL1i8RwvVRKsFUufN4A9jO
|
|
|
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.
|
|
150
|
-
athena_intelligence-0.1.
|
|
151
|
-
athena_intelligence-0.1.
|
|
149
|
+
athena_intelligence-0.1.267.dist-info/METADATA,sha256=VS3AWY85wo4si_P4JGQ5OB2g-PBUrc25Ck-3AHG57gM,5440
|
|
150
|
+
athena_intelligence-0.1.267.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
151
|
+
athena_intelligence-0.1.267.dist-info/RECORD,,
|
|
File without changes
|