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 3177483 commit 2a2d9e1Copy full SHA for 2a2d9e1
adminforth/types/Adapters.ts
@@ -33,9 +33,9 @@ export interface ImageGenerationAdapter {
33
validate(): void;
34
35
/**
36
- * Return 1 or Infinity if the adapter supports multiple images
+ * Return 1 or 10, or Infinity if the adapter supports multiple images
37
*/
38
- outputImagesCountSupported(): number;
+ outputImagesMaxCountSupported(): number;
39
40
41
* Return the list of supported dimensions in format ["100x500", "200x200"]
@@ -45,7 +45,7 @@ export interface ImageGenerationAdapter {
45
46
* Input file extension supported
47
48
- inputFileExtensionSupported(prompt: string, inputFiles: string[]): string[];
+ inputFileExtensionSupported(): string[];
49
50
generate(
51
prompt: string,
0 commit comments