feat(server): expose reuse latest chat (#12999)

fix AI-289
This commit is contained in:
DarkSky
2025-07-03 12:46:23 +08:00
committed by GitHub
parent 4fd42a8461
commit 2ea3c3da9d
5 changed files with 13 additions and 1 deletions

View File

@@ -552,6 +552,8 @@ export interface CreateChatSessionInput {
pinned?: InputMaybe<Scalars['Boolean']['input']>;
/** The prompt name to use for the session */
promptName: Scalars['String']['input'];
/** true by default, compliant for old version */
reuseLatestChat?: InputMaybe<Scalars['Boolean']['input']>;
workspaceId: Scalars['String']['input'];
}