pakerchang / gpt-assistant

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feat: Data Schema

pakerchang opened this issue · comments

commented

Schema Model

interface PromptDataType {
  itemName: string;
  prefixContent?: string;
  content?: string;
  suffixContent?: string;
  isPrompt: boolean;
  isActive: boolean;
}