|
1
|
<?php |
|
2
|
|
|
3
|
class Meow_MWAI_QueryImage extends Meow_MWAI_Query { |
|
4
|
|
|
5
|
public function __construct( $prompt = "", $model = "dall-e" ) { |
|
6
|
$this->prompt = $prompt; |
|
7
|
$this->model = $model; |
|
8
|
$this->mode = "generation"; // could be generation, edit, variation |
|
9
|
} |
|
10
|
|
|
11
|
} |
|
12
|
|