Skip to content
This repository was archived by the owner on May 22, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' of github.com:Dabolus/genkit-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabolus committed May 14, 2024
2 parents f336ee0 + 8c184fa commit 1507f0b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions plugins/anthropic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
"zod": "^3.23.8"
},
"peerDependencies": {
"@genkit-ai/ai": ">=0.5.0-rc.0",
"@genkit-ai/core": ">=0.5.0-rc.0"
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0"
},
"devDependencies": {
"@genkit-ai/ai": "0.5.0-rc.12",
"@genkit-ai/core": "0.5.0-rc.12",
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"@types/node": "^20.12.11",
"npm-run-all": "^4.1.5",
"tsup": "^8.0.2",
Expand Down
8 changes: 4 additions & 4 deletions plugins/openai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"zod": "^3.23.8"
},
"peerDependencies": {
"@genkit-ai/ai": ">=0.5.0-rc.0",
"@genkit-ai/core": ">=0.5.0-rc.0"
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
},
"devDependencies": {
"@genkit-ai/ai": "0.5.0-rc.12",
"@genkit-ai/core": "0.5.0-rc.12",
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"@types/node": "^20.12.11",
"npm-run-all": "^4.1.5",
"tsup": "^8.0.2",
Expand Down
1 change: 1 addition & 0 deletions plugins/openai/src/dalle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const dallE3 = modelRef({
media: false,
output: ['media'],
multiturn: false,
systemRole: false,
tools: false,
},
},
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 @@ -60,6 +60,7 @@ export const gpt4Turbo = modelRef({
multiturn: true,
tools: true,
media: false,
systemRole: true,
output: ['text', 'json'],
},
},
Expand All @@ -75,6 +76,7 @@ export const gpt4Vision = modelRef({
multiturn: true,
tools: false,
media: true,
systemRole: true,
output: ['text'],
},
},
Expand All @@ -90,6 +92,7 @@ export const gpt4 = modelRef({
multiturn: true,
tools: true,
media: false,
systemRole: true,
output: ['text'],
},
},
Expand All @@ -105,6 +108,7 @@ export const gpt35Turbo = modelRef({
multiturn: true,
tools: true,
media: false,
systemRole: true,
output: ['json', 'text'],
},
},
Expand Down

0 comments on commit 1507f0b

Please sign in to comment.