feat: 添加 PromptSection 类型定义
This commit is contained in:
6
src/core/prompt-sections.ts
Normal file
6
src/core/prompt-sections.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export type SectionKind = "head" | "context" | "prompt" | "guide" | "warn";
|
||||
|
||||
export interface PromptSection {
|
||||
kind: SectionKind;
|
||||
content: string;
|
||||
}
|
||||
Reference in New Issue
Block a user