Skip to content

Commit

Permalink
Show system prompt in Dev UI (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDoyle authored May 14, 2024
1 parent 553761b commit 5de5f85
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/openai/src/dalle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export const dallE3 = modelRef({
output: ['media'],
multiturn: false,
tools: false,
systemRole: false,
},
},
configSchema: DallE3ConfigSchema,
Expand Down
4 changes: 4 additions & 0 deletions plugins/openai/src/gpt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export const gpt4Turbo = modelRef({
multiturn: true,
tools: true,
media: true,
systemRole: true,
output: ['text', 'json'],
},
},
Expand All @@ -111,6 +112,7 @@ export const gpt4Vision = modelRef({
multiturn: true,
tools: false,
media: true,
systemRole: true,
output: ['text'],
},
},
Expand All @@ -126,6 +128,7 @@ export const gpt4 = modelRef({
multiturn: true,
tools: true,
media: false,
systemRole: true,
output: ['text'],
},
},
Expand All @@ -141,6 +144,7 @@ export const gpt35Turbo = modelRef({
multiturn: true,
tools: true,
media: false,
systemRole: true,
output: ['json', 'text'],
},
},
Expand Down

0 comments on commit 5de5f85

Please sign in to comment.