MCPcopy
hub / github.com/HisMax/RedInk / GeneratedContent

Interface GeneratedContent

frontend/src/stores/generator.ts:33–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 * 生成的内容数据(标题、文案、标签)
32 */
33export interface GeneratedContent {
34 titles: string[] // 标题列表(多个备选)
35 copywriting: string // 文案内容
36 tags: string[] // 标签列表
37 status: 'idle' | 'generating' | 'done' | 'error' // 生成状态
38 error?: string // 错误信息
39}
40
41export interface GeneratorState {
42 // 当前阶段:input-输入主题, outline-编辑大纲, generating-生成中, result-查看结果

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected