Documentation for Binding
lexy_py.binding.models.Binding
Bases: BindingModel
Binding model
Source code in sdk-python/lexy_py/binding/models.py
lexy_py.binding.models.BindingModel
Bases: BindingBase
Binding model
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
|
required |
collection_id |
str
|
|
required |
transformer_id |
str
|
|
required |
index_id |
str
|
|
required |
collection |
CollectionModel
|
|
required |
transformer |
TransformerModel
|
|
required |
index |
IndexModel
|
|
required |
created_at |
datetime
|
|
required |
updated_at |
datetime
|
|
required |
Source code in sdk-python/lexy_py/binding/models.py
lexy_py.binding.client.BindingClient
This class is used to interact with the Lexy Bindings API.
Attributes:
Name | Type | Description |
---|---|---|
aclient |
AsyncClient
|
Asynchronous API client. |
client |
Client
|
Synchronous API client. |
Source code in sdk-python/lexy_py/binding/client.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|
create_binding(*, collection_name=None, collection_id=None, transformer_id=None, index_id=None, description=None, execution_params=None, transformer_params=None, filters=None, status=None)
Synchronously create a new binding.
One of either _name
or _id
is required for collection
. If both _name
and _id
are provided, _id
will be used.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name |
str
|
Name of the collection containing the source documents. |
None
|
collection_id |
str
|
ID of the collection containing the source documents. |
None
|
transformer_id |
str
|
ID of the transformer that the binding will run. |
None
|
index_id |
str
|
ID of the index in which the binding will store its output. |
None
|
description |
str
|
A description of the binding. |
None
|
execution_params |
dict
|
Parameters to pass to the binding's execution function. |
None
|
transformer_params |
dict
|
Parameters to pass to the transformer. |
None
|
filters |
dict | FilterBuilder
|
Filters to apply to documents in the collection before running the transformer. |
None
|
status |
str
|
The status of the binding. Defaults to "pending". |
None
|
Returns:
Name | Type | Description |
---|---|---|
Binding |
Binding
|
The created binding. |
Raises:
Type | Description |
---|---|
ValueError
|
If neither |
Examples:
Create a binding that runs the transformer with ID "image.embeddings.clip" on all image documents in the collection named "my_collection" and stores the output in the index with ID "image_embeddings":
>>> from lexy_py import LexyClient, FilterBuilder
>>> lx = LexyClient()
>>> image_filter = FilterBuilder().include("meta.type", "equals", "image")
>>> binding = lx.create_binding(
... collection_name="my_collection",
... transformer_id="image.embeddings.clip",
... index_id="image_embeddings",
... filters=image_filter
... )
Source code in sdk-python/lexy_py/binding/client.py
delete_binding(binding_id)
Synchronously delete a binding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
The ID of the binding to delete. |
required |
Source code in sdk-python/lexy_py/binding/client.py
get_binding(binding_id)
Synchronously get a binding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
The ID of the binding to get. |
required |
Returns:
Name | Type | Description |
---|---|---|
Binding |
Binding
|
The binding. |
Source code in sdk-python/lexy_py/binding/client.py
list_bindings()
Synchronously get a list of all bindings.
Returns:
Type | Description |
---|---|
list[Binding]
|
list[Binding]: A list of all bindings. |
Source code in sdk-python/lexy_py/binding/client.py
update_binding(binding_id, *, description=None, execution_params=None, transformer_params=None, filters=None, status=None)
Synchronously update a binding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
The ID of the binding to update. |
required |
description |
str
|
A description of the binding. |
None
|
execution_params |
dict
|
Parameters to pass to the binding's execution function. |
None
|
transformer_params |
dict
|
Parameters to pass to the transformer. |
None
|
filters |
dict | FilterBuilder
|
Filters to apply to documents in the collection before running the transformer. Set to an empty dict to remove any existing filter. |
None
|
status |
str
|
The status of the binding. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Binding |
Binding
|
The updated binding. |
Source code in sdk-python/lexy_py/binding/client.py
acreate_binding(*, collection_name=None, collection_id=None, transformer_id=None, index_id=None, description=None, execution_params=None, transformer_params=None, filters=None, status=None)
async
Asynchronously create a new binding.
One of either _name
or _id
is required for collection
. If both _name
and _id
are provided, _id
will be used.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
collection_name |
str
|
Name of the collection containing the source documents. |
None
|
collection_id |
str
|
ID of the collection containing the source documents. |
None
|
transformer_id |
str
|
ID of the transformer that the binding will run. |
None
|
index_id |
str
|
ID of the index in which the binding will store its output. |
None
|
description |
str
|
A description of the binding. |
None
|
execution_params |
dict
|
Parameters to pass to the binding's execution function. |
None
|
transformer_params |
dict
|
Parameters to pass to the transformer. |
None
|
filters |
dict | FilterBuilder
|
Filters to apply to documents in the collection before running the transformer. |
None
|
status |
str
|
The status of the binding. Defaults to "pending". |
None
|
Returns:
Name | Type | Description |
---|---|---|
Binding |
Binding
|
The created binding. |
Raises:
Type | Description |
---|---|
ValueError
|
If neither |
Source code in sdk-python/lexy_py/binding/client.py
adelete_binding(binding_id)
async
Asynchronously delete a binding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
The ID of the binding to delete. |
required |
Source code in sdk-python/lexy_py/binding/client.py
aget_binding(binding_id)
async
Asynchronously get a binding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
The ID of the binding to get. |
required |
Returns:
Name | Type | Description |
---|---|---|
Binding |
Binding
|
The binding. |
Source code in sdk-python/lexy_py/binding/client.py
alist_bindings()
async
Asynchronously get a list of all bindings.
Returns:
Type | Description |
---|---|
list[Binding]
|
list[Binding]: A list of all bindings. |
Source code in sdk-python/lexy_py/binding/client.py
aupdate_binding(*, binding_id, description=None, execution_params=None, transformer_params=None, filters=None, status=None)
async
Asynchronously update a binding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
binding_id |
int
|
The ID of the binding to update. |
required |
description |
str
|
A description of the binding. |
None
|
execution_params |
dict
|
Parameters to pass to the binding's execution function. |
None
|
transformer_params |
dict
|
Parameters to pass to the transformer. |
None
|
filters |
dict | FilterBuilder
|
Filters to apply to documents in the collection before running the transformer. Set to an empty dict to remove any existing filter. |
None
|
status |
str
|
The status of the binding. |
None
|
Returns:
Name | Type | Description |
---|---|---|
Binding |
Binding
|
The updated binding. |