mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
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:
parent
48c087cc06
commit
3a38b4b842
7 changed files with 202 additions and 7 deletions
|
|
@ -2,6 +2,7 @@ const GoogleSearchAPI = require('./GoogleSearch');
|
|||
const HttpRequestTool = require('./HttpRequestTool');
|
||||
const AIPluginTool = require('./AIPluginTool');
|
||||
const OpenAICreateImage = require('./DALL-E');
|
||||
const DALLE3 = require('./structured/DALLE3');
|
||||
const StructuredSD = require('./structured/StableDiffusion');
|
||||
const StableDiffusionAPI = require('./StableDiffusion');
|
||||
const WolframAlphaAPI = require('./Wolfram');
|
||||
|
|
@ -23,6 +24,7 @@ module.exports = {
|
|||
HttpRequestTool,
|
||||
AIPluginTool,
|
||||
OpenAICreateImage,
|
||||
DALLE3,
|
||||
StableDiffusionAPI,
|
||||
StructuredSD,
|
||||
WolframAlphaAPI,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue