Skip to content

Commit

Permalink
added DALL-E 3 to supported models
Browse files Browse the repository at this point in the history
  • Loading branch information
pranav-kural committed Jul 27, 2024
1 parent 8581cdc commit 7fedfb6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/models/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ import {
geminiPro,
geminiProVision,
} from '@genkit-ai/googleai';
import {gpt35Turbo, gpt4, gpt4o, gpt4Turbo, gpt4Vision} from 'genkitx-openai';
import {
gpt35Turbo,
gpt4,
gpt4o,
gpt4Turbo,
gpt4Vision,
dallE3,
} from 'genkitx-openai';

/**
* Names of supported models.
Expand All @@ -19,6 +26,7 @@ export const SupportedModelNames = {
gpt4Turbo: gpt4Turbo.name,
gpt4Vision: gpt4Vision.name,
gpt4: gpt4.name,
dallE3: dallE3.name,
} as const;

export const getSupportedModelNames = () => Object.values(SupportedModelNames);
Expand Down

0 comments on commit 7fedfb6

Please sign in to comment.