graphlit-client 1.0.20241213001 → 1.0.20241213002
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.
@@ -1923,9 +1923,11 @@ export declare enum ConversationRoleTypes {
|
|
1923
1923
|
}
|
1924
1924
|
/** Conversation search type */
|
1925
1925
|
export declare enum ConversationSearchTypes {
|
1926
|
-
/** Hybrid (Vector similarity using search
|
1926
|
+
/** Hybrid (Vector similarity using user prompt + Keyword search) */
|
1927
1927
|
Hybrid = "HYBRID",
|
1928
|
-
/**
|
1928
|
+
/** Ignore user prompt for content retrieval */
|
1929
|
+
None = "NONE",
|
1930
|
+
/** Vector similarity using user prompt */
|
1929
1931
|
Vector = "VECTOR"
|
1930
1932
|
}
|
1931
1933
|
/** Represents a conversation strategy. */
|
@@ -298,9 +298,11 @@ var ConversationRoleTypes;
|
|
298
298
|
/** Conversation search type */
|
299
299
|
var ConversationSearchTypes;
|
300
300
|
(function (ConversationSearchTypes) {
|
301
|
-
/** Hybrid (Vector similarity using search
|
301
|
+
/** Hybrid (Vector similarity using user prompt + Keyword search) */
|
302
302
|
ConversationSearchTypes["Hybrid"] = "HYBRID";
|
303
|
-
/**
|
303
|
+
/** Ignore user prompt for content retrieval */
|
304
|
+
ConversationSearchTypes["None"] = "NONE";
|
305
|
+
/** Vector similarity using user prompt */
|
304
306
|
ConversationSearchTypes["Vector"] = "VECTOR";
|
305
307
|
})(ConversationSearchTypes || (exports.ConversationSearchTypes = ConversationSearchTypes = {}));
|
306
308
|
/** Conversation strategies */
|