mirror of
https://github.com/f/awesome-chatgpt-prompts.git
synced 2026-03-03 02:57:01 +00:00
feat(prompts): add works best with feature for prompts
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "prompts" ADD COLUMN "bestWithMCP" JSONB,
|
||||
ADD COLUMN "bestWithModels" TEXT[];
|
||||
@@ -124,6 +124,8 @@ model Prompt {
|
||||
outgoingConnections PromptConnection[] @relation("ConnectionSource")
|
||||
incomingConnections PromptConnection[] @relation("ConnectionTarget")
|
||||
collectedBy Collection[]
|
||||
bestWithModels String[] // Model slugs this prompt works best with (max 3), e.g. ["gpt-4o", "claude-3-5-sonnet"]
|
||||
bestWithMCP Json? // MCP configs array, e.g. [{command: "npx -y @mcp/server", tools: ["tool1"]}]
|
||||
|
||||
@@index([authorId])
|
||||
@@index([categoryId])
|
||||
|
||||
Reference in New Issue
Block a user