You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix(test): set static typing compatible to python 3.10
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
* style: enforce some pre-commit hooks on tests
Enforce pre-commit hooks black, isort, autoflake, and mypy on test modules.
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
* fix(rec): fix definition issues in attribute, predicate, subject
Remove duplicate generic types across base and predicate modules.
Create an identifier class for subject names.
Remove unnecessary type variables in attribute model.
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
* docs: refer to Docling data objects
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
---------
Signed-off-by: Cesar Berrospi Ramis <[email protected]>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -183,7 +183,7 @@ Note: Checks like `Black` and `isort` will _fail_ if they modify files. This is
183
183
184
184
## Documentation
185
185
186
-
We use [JSON Schema for Humans](https://github.com/coveooss/json-schema-for-humans) to generate Markdown pages documenting the JSON schema of the Deep Search objects.
186
+
We use [JSON Schema for Humans](https://github.com/coveooss/json-schema-for-humans) to generate Markdown pages documenting the JSON schema of the Docling objects.
187
187
188
188
The documentation pages are stored in [docs](./docs/) folder and are updated at every commit, as part of the `pre-commit` check hooks.
Copy file name to clipboardExpand all lines: docs/Document.json
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -781,7 +781,7 @@
781
781
"x-es-type": "keyword"
782
782
},
783
783
"document-hash": {
784
-
"description": "A unique identifier of this data object within a collection of a Deep Search database",
784
+
"description": "A unique identifier of this data object within a collection of a Docling database",
785
785
"title": "Document-Hash",
786
786
"type": "string",
787
787
"x-es-ignore_above": 8191,
@@ -1086,7 +1086,7 @@
1086
1086
},
1087
1087
"Identifier": {
1088
1088
"additionalProperties": false,
1089
-
"description": "Unique identifier of a Deep Search data object.",
1089
+
"description": "Unique identifier of a Docling data object.",
1090
1090
"properties": {
1091
1091
"type": {
1092
1092
"description": "A string representing a collection or database that contains this data object.",
@@ -1103,7 +1103,7 @@
1103
1103
"x-es-type": "keyword"
1104
1104
},
1105
1105
"_name": {
1106
-
"description": "A unique identifier of the data object across Deep Search, consisting of the concatenation of type and value in lower case, separated by hash (#).",
1106
+
"description": "A unique identifier of the data object across Docling, consisting of the concatenation of type and value in lower case, separated by hash (#).",
1107
1107
"pattern": "^.+#.+$",
1108
1108
"title": "_Name",
1109
1109
"type": "string",
@@ -1139,7 +1139,7 @@
1139
1139
"x-es-type": "keyword"
1140
1140
},
1141
1141
"agent": {
1142
-
"description": "The Deep Search agent that performed the task, e.g., CCS or CXS.",
1142
+
"description": "The Docling agent that performed the task, e.g., CCS or CXS.",
0 commit comments