We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d1d7be commit 49dad30Copy full SHA for 49dad30
internal/apischema/openai/openai.go
@@ -57,6 +57,11 @@ const (
57
58
// ModelTextEmbedding3Small is the cheapest model usable with /embeddings.
59
ModelTextEmbedding3Small = "text-embedding-3-small"
60
+
61
+ // ModelDALLE2 is the DALL-E 2 model usable with /v1/images/generations.
62
+ ModelDALLE2 = "dall-e-2"
63
+ // ModelDALLE3 is the DALL-E 3 model usable with /v1/images/generations.
64
+ ModelDALLE3 = "dall-e-3"
65
)
66
67
// ChatCompletionContentPartRefusalType The type of the content part.
0 commit comments