feat: add source field to PromptMessage type

This commit is contained in:
2026-04-16 00:41:32 -06:00
parent e9781fdada
commit 567da331f4

View File

@@ -3,6 +3,7 @@ import type { TASK_TYPE } from "./const"
export interface PromptMessage { export interface PromptMessage {
id: number id: number
role: string role: string
source?: string
content: string content: string
code_html: string | null code_html: string | null
code_css: string | null code_css: string | null