mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-20 11:36:25 +08:00
@@ -9,6 +9,7 @@ query getCopilotSession(
|
||||
parentSessionId
|
||||
docId
|
||||
pinned
|
||||
title
|
||||
promptName
|
||||
model
|
||||
optionalModels
|
||||
|
||||
@@ -10,6 +10,7 @@ query getCopilotSessions(
|
||||
parentSessionId
|
||||
docId
|
||||
pinned
|
||||
title
|
||||
promptName
|
||||
model
|
||||
optionalModels
|
||||
|
||||
@@ -799,6 +799,7 @@ export const getCopilotSessionQuery = {
|
||||
parentSessionId
|
||||
docId
|
||||
pinned
|
||||
title
|
||||
promptName
|
||||
model
|
||||
optionalModels
|
||||
@@ -848,6 +849,7 @@ export const getCopilotSessionsQuery = {
|
||||
parentSessionId
|
||||
docId
|
||||
pinned
|
||||
title
|
||||
promptName
|
||||
model
|
||||
optionalModels
|
||||
|
||||
@@ -419,6 +419,7 @@ export interface CopilotSessionType {
|
||||
parentSessionId: Maybe<Scalars['ID']['output']>;
|
||||
pinned: Scalars['Boolean']['output'];
|
||||
promptName: Scalars['String']['output'];
|
||||
title: Maybe<Scalars['String']['output']>;
|
||||
}
|
||||
|
||||
export interface CopilotWorkspaceConfig {
|
||||
@@ -3619,6 +3620,7 @@ export type GetCopilotSessionQuery = {
|
||||
parentSessionId: string | null;
|
||||
docId: string | null;
|
||||
pinned: boolean;
|
||||
title: string | null;
|
||||
promptName: string;
|
||||
model: string;
|
||||
optionalModels: Array<string>;
|
||||
@@ -3680,6 +3682,7 @@ export type GetCopilotSessionsQuery = {
|
||||
parentSessionId: string | null;
|
||||
docId: string | null;
|
||||
pinned: boolean;
|
||||
title: string | null;
|
||||
promptName: string;
|
||||
model: string;
|
||||
optionalModels: Array<string>;
|
||||
|
||||
Reference in New Issue
Block a user