aboutsummaryrefslogtreecommitdiff
path: root/src/client/apis/gpt/GPT.ts
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-05-11 07:51:59 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2025-05-11 07:51:59 -0400
commit4af498433a887c70dc7043a5a34eef7fff5bbbe0 (patch)
tree20425085b59d13d994de9dcb3dfa8bd166f6d3f9 /src/client/apis/gpt/GPT.ts
parent8195cb97556765a8025de554a44f48d4c15d4c64 (diff)
a million and one things
Diffstat (limited to 'src/client/apis/gpt/GPT.ts')
-rw-r--r--src/client/apis/gpt/GPT.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/apis/gpt/GPT.ts b/src/client/apis/gpt/GPT.ts
index 57a229569..d7b378958 100644
--- a/src/client/apis/gpt/GPT.ts
+++ b/src/client/apis/gpt/GPT.ts
@@ -221,6 +221,7 @@ const gptAPICall = async (inputTextIn: string, callType: GPTCallType, prompt?: s
const gptImageCall = async (prompt: string, n?: number) => {
try {
const response = await openai.images.generate({
+ model: 'dall-e-3',
prompt: prompt,
n: n ?? 1,
size: '1024x1024',