From de4084495b893359ba598bc18d163f7c9d56f122 Mon Sep 17 00:00:00 2001 From: forehalo Date: Mon, 8 Jul 2024 17:21:21 +0800 Subject: [PATCH] chore(graphql): generate new schema --- packages/frontend/graphql/src/schema.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages/frontend/graphql/src/schema.ts b/packages/frontend/graphql/src/schema.ts index 5c780013e4..2f003c68f6 100644 --- a/packages/frontend/graphql/src/schema.ts +++ b/packages/frontend/graphql/src/schema.ts @@ -100,6 +100,23 @@ export enum CopilotModels { TextModerationStable = 'TextModerationStable', } +export interface CopilotPromptConfigInput { + frequencyPenalty: InputMaybe; + jsonMode: InputMaybe; + presencePenalty: InputMaybe; + temperature: InputMaybe; + topP: InputMaybe; +} + +export interface CopilotPromptConfigType { + __typename?: 'CopilotPromptConfigType'; + frequencyPenalty: Maybe; + jsonMode: Maybe; + presencePenalty: Maybe; + temperature: Maybe; + topP: Maybe; +} + export interface CopilotPromptMessageInput { content: Scalars['String']['input']; params: InputMaybe; @@ -127,6 +144,7 @@ export interface CopilotPromptNotFoundDataType { export interface CopilotPromptType { __typename?: 'CopilotPromptType'; action: Maybe; + config: Maybe; messages: Array; model: CopilotModels; name: Scalars['String']['output']; @@ -170,6 +188,7 @@ export interface CreateCheckoutSessionInput { export interface CreateCopilotPromptInput { action: InputMaybe; + config: InputMaybe; messages: Array; model: CopilotModels; name: Scalars['String']['input'];