From 567da331f44d5498f7293fa173d682223436024a Mon Sep 17 00:00:00 2001 From: yuetsh <517252939@qq.com> Date: Thu, 16 Apr 2026 00:41:32 -0600 Subject: [PATCH] feat: add source field to PromptMessage type --- src/utils/type.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/type.ts b/src/utils/type.ts index fa4510b..f548a03 100644 --- a/src/utils/type.ts +++ b/src/utils/type.ts @@ -3,6 +3,7 @@ import type { TASK_TYPE } from "./const" export interface PromptMessage { id: number role: string + source?: string content: string code_html: string | null code_css: string | null