Skip to content

Commit

Permalink
chore: 更新DALL-E图片尺寸至1024x1024 #307
Browse files Browse the repository at this point in the history
  • Loading branch information
TBXark committed Nov 22, 2024
1 parent 2f6b657 commit fda8bc3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/buildinfo.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion doc/cn/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ OPENAI_API_BASE,GOOGLE_COMPLETIONS_API,MISTRAL_API_BASE,COHERE_API_BASE,ANTHROPI
| OPENAI_API_BASE | OpenAI API BASE | `https://api.openai.com/v1` |
| OPENAI_API_EXTRA_PARAMS | OpenAI API Extra Params | `{}` |
| DALL_E_MODEL | DALL-E的模型名称 | `dall-e-3` |
| DALL_E_IMAGE_SIZE | DALL-E图片尺寸 | `512x512` |
| DALL_E_IMAGE_SIZE | DALL-E图片尺寸 | `1024x1024` |
| DALL_E_IMAGE_QUALITY | DALL-E图片质量 | `standard` |
| DALL_E_IMAGE_STYLE | DALL-E图片风格 | `vivid` |

Expand Down
2 changes: 1 addition & 1 deletion doc/en/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Each user's custom configuration can only be modified by sending a message throu
| OPENAI_API_BASE | OpenAI API BASE | `https://api.openai.com/v1` |
| OPENAI_API_EXTRA_PARAMS | OpenAI API Extra Params | `{}` |
| DALL_E_MODEL | DALL-E model name. | `dall-e-3` |
| DALL_E_IMAGE_SIZE | DALL-E Image size | `512x512` |
| DALL_E_IMAGE_SIZE | DALL-E Image size | `1024x1024` |
| DALL_E_IMAGE_QUALITY | DALL-E Image quality | `standard` |
| DALL_E_IMAGE_STYLE | DALL-E Image style | `vivid` |

Expand Down
2 changes: 1 addition & 1 deletion packages/lib/core/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class DallEConfig {
// DALL-E的模型名称
DALL_E_MODEL = 'dall-e-3';
// DALL-E图片尺寸
DALL_E_IMAGE_SIZE = '512x512';
DALL_E_IMAGE_SIZE = '1024x1024';
// DALL-E图片质量
DALL_E_IMAGE_QUALITY = 'standard';
// DALL-E图片风格
Expand Down
4 changes: 2 additions & 2 deletions packages/lib/core/src/config/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const BUILD_TIMESTAMP = 1731919915;
export const BUILD_VERSION = 'e0478ec';
export const BUILD_TIMESTAMP = 1732293307;
export const BUILD_VERSION = '2f6b657';

0 comments on commit fda8bc3

Please sign in to comment.