This commit is contained in:
2026-04-30 17:49:07 +08:00
parent 805d6f8cae
commit 9d684cb7b3
615 changed files with 15368 additions and 6172 deletions

View File

@@ -27,6 +27,7 @@ export interface PuzzleAgentMessage {
export interface PuzzleAgentSessionSnapshot {
sessionId: string;
seedText?: string;
currentTurn: number;
progressPercent: number;
stage: PuzzleAgentStage;
@@ -42,6 +43,8 @@ export interface PuzzleAgentSessionSnapshot {
export interface CreatePuzzleAgentSessionRequest {
seedText?: string;
workTitle?: string;
workDescription?: string;
pictureDescription?: string;
referenceImageSrc?: string | null;
}