lucid-extension-sdk
Advanced tools
Comparing version 0.0.228 to 0.0.229
@@ -1106,6 +1106,15 @@ import { SerializedFieldTypeDefinition } from './core/data/fieldtypedefinition/fieldtypedefinition'; | ||
export declare enum GetLLMContextType { | ||
/** Get context in a format for LLMs where relationships among connected and contained items is preserved */ | ||
/** Get context in a format for LLMs where relationships among connected and | ||
* contained items are preserved. Expand the scope of the selection to | ||
* include blocks contained by the selection as well as lines connecting | ||
* items in the selection. */ | ||
Relational = 1, | ||
/** Get context containing only plain text displayed on the given items, more suitable for embeddings */ | ||
PlainText = 2 | ||
PlainText = 2, | ||
/** Get context in a format for LLMs where relationships among connected and | ||
* contained items are preserved. Do not expand the scope of the selection, | ||
* other than to ensure relationships are represented. Text on selected | ||
* items will be included, but text on automatically added items will not. | ||
* */ | ||
RelationalWithoutExpansion = 3 | ||
} | ||
@@ -1112,0 +1121,0 @@ export type GetLLMContextFromItemsQuery = { |
@@ -140,6 +140,15 @@ "use strict"; | ||
(function (GetLLMContextType) { | ||
/** Get context in a format for LLMs where relationships among connected and contained items is preserved */ | ||
/** Get context in a format for LLMs where relationships among connected and | ||
* contained items are preserved. Expand the scope of the selection to | ||
* include blocks contained by the selection as well as lines connecting | ||
* items in the selection. */ | ||
GetLLMContextType[GetLLMContextType["Relational"] = 1] = "Relational"; | ||
/** Get context containing only plain text displayed on the given items, more suitable for embeddings */ | ||
GetLLMContextType[GetLLMContextType["PlainText"] = 2] = "PlainText"; | ||
/** Get context in a format for LLMs where relationships among connected and | ||
* contained items are preserved. Do not expand the scope of the selection, | ||
* other than to ensure relationships are represented. Text on selected | ||
* items will be included, but text on automatically added items will not. | ||
* */ | ||
GetLLMContextType[GetLLMContextType["RelationalWithoutExpansion"] = 3] = "RelationalWithoutExpansion"; | ||
})(GetLLMContextType || (exports.GetLLMContextType = GetLLMContextType = {})); | ||
@@ -146,0 +155,0 @@ function isRawSendXHRResponse(val) { |
{ | ||
"name": "lucid-extension-sdk", | ||
"version": "0.0.228", | ||
"version": "0.0.229", | ||
"description": "Utility classes for writing Lucid Software editor extensions", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
719462
16697