feat: DALL-E-3 support 🎨 (#1147)

* feat: DALL-E-3 support

* fix(ci): lock-in openai dependency for types used in data-provider
This commit is contained in:
Danny Avila 2023-11-06 19:45:59 -05:00 committed by GitHub
parent 48c087cc06
commit 3a38b4b842
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 202 additions and 7 deletions

View file

@ -15,6 +15,7 @@ const {
HttpRequestTool,
OpenAICreateImage,
StableDiffusionAPI,
DALLE3,
StructuredSD,
AzureCognitiveSearch,
StructuredACS,
@ -176,6 +177,7 @@ const loadTools = async ({
const requestedTools = {};
if (functions) {
toolConstructors.dalle = DALLE3;
toolConstructors.codesherpa = CodeSherpa;
}