graphlit-client 1.0.20251222003 → 1.0.20251224001
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.
|
@@ -16979,6 +16979,8 @@ export type SpecificationResults = {
|
|
|
16979
16979
|
};
|
|
16980
16980
|
/** Specification type */
|
|
16981
16981
|
export declare enum SpecificationTypes {
|
|
16982
|
+
/** Agentic completion, used with formatConversation/completeConversation */
|
|
16983
|
+
Agentic = "AGENTIC",
|
|
16982
16984
|
/** Content classification */
|
|
16983
16985
|
Classification = "CLASSIFICATION",
|
|
16984
16986
|
/** Prompt completion */
|
|
@@ -2317,6 +2317,8 @@ export var SoftwareFacetTypes;
|
|
|
2317
2317
|
/** Specification type */
|
|
2318
2318
|
export var SpecificationTypes;
|
|
2319
2319
|
(function (SpecificationTypes) {
|
|
2320
|
+
/** Agentic completion, used with formatConversation/completeConversation */
|
|
2321
|
+
SpecificationTypes["Agentic"] = "AGENTIC";
|
|
2320
2322
|
/** Content classification */
|
|
2321
2323
|
SpecificationTypes["Classification"] = "CLASSIFICATION";
|
|
2322
2324
|
/** Prompt completion */
|
package/dist/model-mapping.js
CHANGED
|
@@ -120,6 +120,7 @@ const GOOGLE_MODEL_MAP = {
|
|
|
120
120
|
[Types.GoogleModels.Gemini_2_5Flash]: "gemini-2.5-flash",
|
|
121
121
|
[Types.GoogleModels.Gemini_2_5Pro]: "gemini-2.5-pro",
|
|
122
122
|
// Gemini 3 models
|
|
123
|
+
[Types.GoogleModels.Gemini_3FlashPreview]: "gemini-3-flash-preview",
|
|
123
124
|
[Types.GoogleModels.Gemini_3ProPreview]: "gemini-3-pro-preview",
|
|
124
125
|
// Gemini Latest models
|
|
125
126
|
[Types.GoogleModels.GeminiFlashLatest]: "gemini-flash-latest",
|