BaseDoc
docarray.base_doc.doc.BaseDoc
Bases: BaseModel
, IOMixin
, UpdateMixin
, BaseNode
BaseDoc is the base class for all Documents. This class should be subclassed to create new Document types with a specific schema.
The schema of a Document is defined by the fields of the class.
Example:
from docarray import BaseDoc
from docarray.typing import NdArray, ImageUrl
import numpy as np
class MyDoc(BaseDoc):
embedding: NdArray[512]
image: ImageUrl
doc = MyDoc(embedding=np.zeros(512), image='https://example.com/image.jpg')
BaseDoc is a subclass of pydantic.BaseModel and can be used in a similar way.
Source code in docarray/base_doc/doc.py
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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
|
dict(*, include=None, exclude=None, by_alias=False, skip_defaults=None, exclude_unset=False, exclude_defaults=False, exclude_none=False)
Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.
Source code in docarray/base_doc/doc.py
json(*, include=None, exclude=None, by_alias=False, skip_defaults=None, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=None, models_as_dict=True, **dumps_kwargs)
Generate a JSON representation of the model, include
and exclude
arguments as per dict()
.
encoder
is an optional function to supply as default
to json.dumps(),
other arguments as per json.dumps()
.
Source code in docarray/base_doc/doc.py
parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)
classmethod
Parse a raw string or bytes into a base doc
Parameters:
Name | Type | Description | Default |
---|---|---|---|
b |
StrBytes
|
required | |
content_type |
str
|
None
|
|
encoding |
str
|
the encoding to use when parsing a string, defaults to 'utf8' |
'utf8'
|
proto |
Protocol
|
protocol to use. |
None
|
allow_pickle |
bool
|
allow pickle protocol |
False
|
Returns:
Type | Description |
---|---|
T
|
a document |
Source code in docarray/base_doc/doc.py
schema_summary()
classmethod
summary()
Print non-empty fields and nested structure of this Document object.
docarray.base_doc.mixins.io.IOMixin
Bases: Iterable[Tuple[str, Any]]
IOMixin to define all the bytes/protobuf/json related part of BaseDoc
Source code in docarray/base_doc/mixins/io.py
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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
|
from_base64(data, protocol='pickle', compress=None)
classmethod
Build Document object from binary bytes
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
str
|
a base64 encoded string |
required |
protocol |
str
|
protocol to use. It can be 'pickle' or 'protobuf' |
'pickle'
|
compress |
Optional[str]
|
compress method to use |
None
|
Returns:
Type | Description |
---|---|
T
|
a Document object |
Source code in docarray/base_doc/mixins/io.py
from_bytes(data, protocol='protobuf', compress=None)
classmethod
Build Document object from binary bytes
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
bytes
|
binary bytes |
required |
protocol |
str
|
protocol to use. It can be 'pickle' or 'protobuf' |
'protobuf'
|
compress |
Optional[str]
|
compress method to use |
None
|
Returns:
Type | Description |
---|---|
T
|
a Document object |
Source code in docarray/base_doc/mixins/io.py
from_protobuf(pb_msg)
classmethod
create a Document from a protobuf message
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pb_msg |
DocProto
|
the proto message of the Document |
required |
Returns:
Type | Description |
---|---|
T
|
a Document initialize with the proto data |
Source code in docarray/base_doc/mixins/io.py
to_base64(protocol='protobuf', compress=None)
Serialize a Document object into as base64 string
Parameters:
Name | Type | Description | Default |
---|---|---|---|
protocol |
str
|
protocol to use. It can be 'pickle' or 'protobuf' |
'protobuf'
|
compress |
Optional[str]
|
compress method to use |
None
|
Returns:
Type | Description |
---|---|
str
|
a base64 encoded string |
Source code in docarray/base_doc/mixins/io.py
to_bytes(protocol='protobuf', compress=None)
Serialize itself into bytes.
For more Pythonic code, please use bytes(...)
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
protocol |
str
|
protocol to use. It can be 'pickle' or 'protobuf' |
'protobuf'
|
compress |
Optional[str]
|
compression algorithm to use |
None
|
Returns:
Type | Description |
---|---|
bytes
|
the binary serialization in bytes |
Source code in docarray/base_doc/mixins/io.py
to_protobuf()
Convert Document into a Protobuf message.
Returns:
Type | Description |
---|---|
DocProto
|
the protobuf message |
Source code in docarray/base_doc/mixins/io.py
docarray.base_doc.mixins.update.UpdateMixin
Source code in docarray/base_doc/mixins/update.py
12 13 14 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 |
|
update(other)
Updates self with the content of other. Changes are applied to self. Updating one Document with another consists in the following:
- Setting data properties of the second Document to the first Document if they are not None
- Concatenating lists and updating sets
- Updating recursively Documents and DocLists
- Updating Dictionaries of the left with the right
It behaves as an update operation for Dictionaries, except that since
it is applied to a static schema type, the presence of the field is
given by the field not having a None value and that DocLists,
lists and sets are concatenated. It is worth mentioning that Tuples
are not merged together since they are meant to be immutable,
so they behave as regular types and the value of self
is updated
with the value of other
.
from typing import List, Optional
from docarray import BaseDoc
class MyDocument(BaseDoc):
content: str
title: Optional[str] = None
tags_: List
doc1 = MyDocument(
content='Core content of the document', title='Title', tags_=['python', 'AI']
)
doc2 = MyDocument(content='Core content updated', tags_=['docarray'])
doc1.update(doc2)
assert doc1.content == 'Core content updated'
assert doc1.title == 'Title'
assert doc1.tags_ == ['python', 'AI', 'docarray']
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
T
|
The Document with which to update the contents of this |
required |
Source code in docarray/base_doc/mixins/update.py
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 |
|