feat: add prompt management functionality with modal integration

This commit is contained in:
Siddhant Rai
2025-04-16 19:41:16 +05:30
parent da15cde49c
commit 2f9f428a2f
3 changed files with 258 additions and 5 deletions

View File

@@ -21,6 +21,12 @@ export type GetDocsResponse = {
nextCursor: string;
};
export type Prompt = {
name: string;
id: string;
type: string;
};
export type PromptProps = {
prompts: { name: string; id: string; type: string }[];
selectedPrompt: { name: string; id: string; type: string };