unique_sdk 0.10.53__py3-none-any.whl → 0.10.56__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.
- unique_sdk/api_resources/_agentic_table.py +27 -17
- unique_sdk/api_resources/_folder.py +1 -0
- unique_sdk/api_resources/_integrated.py +1 -0
- {unique_sdk-0.10.53.dist-info → unique_sdk-0.10.56.dist-info}/METADATA +10 -1
- {unique_sdk-0.10.53.dist-info → unique_sdk-0.10.56.dist-info}/RECORD +7 -7
- {unique_sdk-0.10.53.dist-info → unique_sdk-0.10.56.dist-info}/LICENSE +0 -0
- {unique_sdk-0.10.53.dist-info → unique_sdk-0.10.56.dist-info}/WHEEL +0 -0
|
@@ -27,7 +27,7 @@ class LogEntry(TypedDict):
|
|
|
27
27
|
createdAt: str
|
|
28
28
|
actorType: Literal["USER", "SYSTEM", "ASSISTANT", "TOOL"]
|
|
29
29
|
messageId: NotRequired[str]
|
|
30
|
-
details: NotRequired[
|
|
30
|
+
details: NotRequired[LogDetail]
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class AgenticTableCell(TypedDict, total=False):
|
|
@@ -36,7 +36,7 @@ class AgenticTableCell(TypedDict, total=False):
|
|
|
36
36
|
columnOrder: int
|
|
37
37
|
rowLocked: bool
|
|
38
38
|
text: str
|
|
39
|
-
logEntries: list[LogEntry]
|
|
39
|
+
logEntries: list[LogEntry] | None
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
class ColumnMetadataUpdateStatus(TypedDict, total=False):
|
|
@@ -73,6 +73,29 @@ class CellRendererTypes(StrEnum):
|
|
|
73
73
|
SELECTABLE_CELL_RENDERER = "SelectableCellRenderer"
|
|
74
74
|
|
|
75
75
|
|
|
76
|
+
class MagicTableAction(StrEnum):
|
|
77
|
+
DELETE_ROW = "DeleteRow"
|
|
78
|
+
DELETE_COLUMN = "DeleteColumn"
|
|
79
|
+
UPDATE_CELL = "UpdateCell"
|
|
80
|
+
ADD_QUESTION_TEXT = "AddQuestionText"
|
|
81
|
+
ADD_META_DATA = "AddMetaData"
|
|
82
|
+
GENERATE_ARTIFACT = "GenerateArtifact"
|
|
83
|
+
SHEET_COMPLETED = "SheetCompleted"
|
|
84
|
+
LIBRARY_SHEET_ROW_VERIFIED = "LibrarySheetRowVerified"
|
|
85
|
+
SHEET_CREATED = "SheetCreated"
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class ActivityStatus(StrEnum):
|
|
89
|
+
IN_PROGRESS = "IN_PROGRESS"
|
|
90
|
+
COMPLETED = "COMPLETED"
|
|
91
|
+
FAILED = "FAILED"
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class SheetType(StrEnum):
|
|
95
|
+
DEFAULT = "DEFAULT"
|
|
96
|
+
LIBRARY = "LIBRARY"
|
|
97
|
+
|
|
98
|
+
|
|
76
99
|
class SelectionMethod(StrEnum):
|
|
77
100
|
DEFAULT = "DEFAULT"
|
|
78
101
|
MANUAL = "MANUAL"
|
|
@@ -108,21 +131,8 @@ class AgenticTable(APIResource["AgenticTable"]):
|
|
|
108
131
|
|
|
109
132
|
class SetActivityStatus(RequestOptions):
|
|
110
133
|
tableId: str
|
|
111
|
-
activity:
|
|
112
|
-
|
|
113
|
-
"DeleteColumn",
|
|
114
|
-
"UpdateCell",
|
|
115
|
-
"AddQuestionText",
|
|
116
|
-
"AddMetaData",
|
|
117
|
-
"GenerateArtifact",
|
|
118
|
-
"SheetCompleted",
|
|
119
|
-
"LibrarySheetRowVerified",
|
|
120
|
-
]
|
|
121
|
-
status: Literal[
|
|
122
|
-
"IN_PROGRESS",
|
|
123
|
-
"COMPLETED",
|
|
124
|
-
"FAILED",
|
|
125
|
-
]
|
|
134
|
+
activity: MagicTableAction
|
|
135
|
+
status: ActivityStatus
|
|
126
136
|
text: str
|
|
127
137
|
|
|
128
138
|
class SetArtifact(RequestOptions):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_sdk
|
|
3
|
-
Version: 0.10.
|
|
3
|
+
Version: 0.10.56
|
|
4
4
|
Summary:
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Martin Fadler
|
|
@@ -28,6 +28,15 @@ All notable changes to this project will be documented in this file.
|
|
|
28
28
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
29
29
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
30
30
|
|
|
31
|
+
## [0.10.56] - 2025-12-05
|
|
32
|
+
- Add description field on create chat completions params.
|
|
33
|
+
|
|
34
|
+
## [0.10.55] - 2025-12-04
|
|
35
|
+
- Allow configuring inherit access on folder creation.
|
|
36
|
+
|
|
37
|
+
## [0.10.54] - 2025-12-02
|
|
38
|
+
- Add types for Agentic Table api methods.
|
|
39
|
+
|
|
31
40
|
## [0.10.53] - 2025-12-01
|
|
32
41
|
- Improve OpenAI Proxy docs https://unique-ag.github.io/ai/unique-sdk/
|
|
33
42
|
|
|
@@ -15,14 +15,14 @@ unique_sdk/_version.py,sha256=j4_tPC6t3enRds7LqiRuWSyfrYHfEo6CXIDARAWW98I,19
|
|
|
15
15
|
unique_sdk/_webhook.py,sha256=GYxbUibQN_W4XlNTHaMIksT9FQJk4LJmlKcxOu3jqiU,2855
|
|
16
16
|
unique_sdk/api_resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
unique_sdk/api_resources/_acronyms.py,sha256=GIU1XH1flGWQYcpsFqTYwg4ioIGxVmb15tux84nmhEg,891
|
|
18
|
-
unique_sdk/api_resources/_agentic_table.py,sha256=
|
|
18
|
+
unique_sdk/api_resources/_agentic_table.py,sha256=GN-GBgWEwRZOdKsx6DoHPZpjrr71PUGtyuJk20ETmFY,10208
|
|
19
19
|
unique_sdk/api_resources/_chat_completion.py,sha256=ILCAffxkbkfh2iV9L4KKnfe80gZmT9pWfkNmf3mq68U,2172
|
|
20
20
|
unique_sdk/api_resources/_content.py,sha256=vRynwj4QBZA1v2CVg_xbhmLqqh3m4cPGMoLeFZTaSYA,17543
|
|
21
21
|
unique_sdk/api_resources/_embedding.py,sha256=C6qak7cCUBMBINfPhgH8taCJZ9n6w1MUElqDJJ8dG10,1281
|
|
22
22
|
unique_sdk/api_resources/_event.py,sha256=bpWF9vstdoAWbUzr-iiGP713ceP0zPk77GJXiImf9zg,374
|
|
23
|
-
unique_sdk/api_resources/_folder.py,sha256=
|
|
23
|
+
unique_sdk/api_resources/_folder.py,sha256=4I_b5GFGJUcRNcebCWcM8aDm0DQ6g6Y4JrkpUNxtJSc,16945
|
|
24
24
|
unique_sdk/api_resources/_group.py,sha256=8A8mSjhWuhFxBA2r_z7q-70miJ_ugz7NAffVwbPu1oo,10302
|
|
25
|
-
unique_sdk/api_resources/_integrated.py,sha256=
|
|
25
|
+
unique_sdk/api_resources/_integrated.py,sha256=TxEKSYQZjZezBUk6kUgLvCgqgZXvgZR2IqHLieapKwQ,6204
|
|
26
26
|
unique_sdk/api_resources/_llm_models.py,sha256=3Jn6MpxWgZ43Hze8JHd4_n27si5xmwd3JE8r8cEZq_M,1640
|
|
27
27
|
unique_sdk/api_resources/_mcp.py,sha256=zKh0dyn0QnkKk57N2zlGVN_GQoxEp5T2CS38vVm6jQY,3341
|
|
28
28
|
unique_sdk/api_resources/_message.py,sha256=tSS_jVwoAffBFH6RSClEnbRf48MleL7RMs3MnbNDq-E,10986
|
|
@@ -39,7 +39,7 @@ unique_sdk/utils/chat_in_space.py,sha256=e_Ny03eB7Q8oijdUR_sPlFTIgq2rsCbSR-Sin8j
|
|
|
39
39
|
unique_sdk/utils/file_io.py,sha256=lskRULIh7qExK26o_1YqRs0f5mqJHTS9m_mdxlsVo4s,4497
|
|
40
40
|
unique_sdk/utils/sources.py,sha256=DoxxhMLcLhmDfNarjXa41H4JD2GSSDywr71hiC-4pYc,4952
|
|
41
41
|
unique_sdk/utils/token.py,sha256=AzKuAA1AwBtnvSFxGcsHLpxXr_wWE5Mj4jYBbOz2ljA,1740
|
|
42
|
-
unique_sdk-0.10.
|
|
43
|
-
unique_sdk-0.10.
|
|
44
|
-
unique_sdk-0.10.
|
|
45
|
-
unique_sdk-0.10.
|
|
42
|
+
unique_sdk-0.10.56.dist-info/LICENSE,sha256=EJCWoHgrXVBUb47PnjeV4MFIEOR71MAdCOIgv61J-4k,1065
|
|
43
|
+
unique_sdk-0.10.56.dist-info/METADATA,sha256=TRZBMVYh2i5ZRDBbODnEaJn_WWJOurtgoV25fwgJUBY,10484
|
|
44
|
+
unique_sdk-0.10.56.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
45
|
+
unique_sdk-0.10.56.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|