Skip to content

Commit b1c8acc

Browse files
authored
Merge pull request #634 from dzcode-io/feat/cache-ai-prompt
Feat: cache ai prompt
2 parents a893a2e + f88e3a4 commit b1c8acc

File tree

9 files changed

+621
-10
lines changed

9 files changed

+621
-10
lines changed
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CREATE TABLE IF NOT EXISTS "ai_prompts" (
2+
"hash" text PRIMARY KEY NOT NULL,
3+
"prompt" text NOT NULL,
4+
"response" text NOT NULL,
5+
"record_imported_at" text DEFAULT CURRENT_TIMESTAMP NOT NULL
6+
);

0 commit comments

Comments
 (0)