@semiont/core 0.3.0 → 0.3.1
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.
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3443,7 +3443,7 @@ interface components {
|
|
|
3443
3443
|
/** @description The resource containing the annotation */
|
|
3444
3444
|
sourceResource: components["schemas"]["ResourceDescriptor"];
|
|
3445
3445
|
/** @description Text context from the source document */
|
|
3446
|
-
sourceContext
|
|
3446
|
+
sourceContext?: {
|
|
3447
3447
|
/** @description Text appearing before the selected passage */
|
|
3448
3448
|
before?: string;
|
|
3449
3449
|
/** @description The selected text passage (the annotation target) */
|
|
@@ -3460,6 +3460,8 @@ interface components {
|
|
|
3460
3460
|
/** @description Entity types associated with the annotation */
|
|
3461
3461
|
entityTypes?: string[];
|
|
3462
3462
|
};
|
|
3463
|
+
/** @description User-provided textual hint to supplement or replace the selected text for search and generation */
|
|
3464
|
+
userHint?: string;
|
|
3463
3465
|
/** @description Graph-derived context from the knowledge base */
|
|
3464
3466
|
graphContext?: {
|
|
3465
3467
|
/** @description Resources connected to the source resource via annotations */
|