graphlit-client 1.0.20250130001 → 1.0.20250204001
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.
@@ -3753,7 +3753,7 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
3753
3753
|
}
|
3754
3754
|
`;
|
3755
3755
|
exports.Prompt = (0, graphql_tag_1.default) `
|
3756
|
-
mutation Prompt($prompt: String
|
3756
|
+
mutation Prompt($prompt: String, $mimeType: String, $data: String, $specification: EntityReferenceInput, $messages: [ConversationMessageInput!], $correlationId: String) {
|
3757
3757
|
prompt(
|
3758
3758
|
prompt: $prompt
|
3759
3759
|
mimeType: $mimeType
|
@@ -8836,7 +8836,11 @@ export declare enum OpenAiModels {
|
|
8836
8836
|
/** o1 Preview 128k (Latest) */
|
8837
8837
|
O1Preview_128K = "O1_PREVIEW_128K",
|
8838
8838
|
/** o1 Preview 128k (2024-09-12 version) */
|
8839
|
-
O1Preview_128K_20240912 = "O1_PREVIEW_128K_20240912"
|
8839
|
+
O1Preview_128K_20240912 = "O1_PREVIEW_128K_20240912",
|
8840
|
+
/** o3 Mini 200k (Latest) */
|
8841
|
+
O3Mini_200K = "O3_MINI_200K",
|
8842
|
+
/** o3 Mini 200k (2025-01-31 version) */
|
8843
|
+
O3Mini_200K_20250131 = "O3_MINI_200K_20250131"
|
8840
8844
|
}
|
8841
8845
|
/** OpenAI vision model detail levels */
|
8842
8846
|
export declare enum OpenAiVisionDetailLevels {
|
@@ -17137,7 +17141,7 @@ export type GetConversationQuery = {
|
|
17137
17141
|
} | null;
|
17138
17142
|
};
|
17139
17143
|
export type PromptMutationVariables = Exact<{
|
17140
|
-
prompt
|
17144
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
17141
17145
|
mimeType?: InputMaybe<Scalars['String']['input']>;
|
17142
17146
|
data?: InputMaybe<Scalars['String']['input']>;
|
17143
17147
|
specification?: InputMaybe<EntityReferenceInput>;
|
@@ -1347,6 +1347,10 @@ var OpenAiModels;
|
|
1347
1347
|
OpenAiModels["O1Preview_128K"] = "O1_PREVIEW_128K";
|
1348
1348
|
/** o1 Preview 128k (2024-09-12 version) */
|
1349
1349
|
OpenAiModels["O1Preview_128K_20240912"] = "O1_PREVIEW_128K_20240912";
|
1350
|
+
/** o3 Mini 200k (Latest) */
|
1351
|
+
OpenAiModels["O3Mini_200K"] = "O3_MINI_200K";
|
1352
|
+
/** o3 Mini 200k (2025-01-31 version) */
|
1353
|
+
OpenAiModels["O3Mini_200K_20250131"] = "O3_MINI_200K_20250131";
|
1350
1354
|
})(OpenAiModels || (exports.OpenAiModels = OpenAiModels = {}));
|
1351
1355
|
/** OpenAI vision model detail levels */
|
1352
1356
|
var OpenAiVisionDetailLevels;
|