File tree Expand file tree Collapse file tree 7 files changed +14
-28
lines changed Expand file tree Collapse file tree 7 files changed +14
-28
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,8 @@ class Claude extends Model
34
34
/**
35
35
* @param array<string, mixed> $options The default options for the model usage
36
36
*/
37
- public function __construct (
38
- string $ name ,
39
- array $ options = [],
40
- ) {
37
+ public function __construct (string $ name , array $ options = [])
38
+ {
41
39
$ capabilities = [
42
40
Capability::INPUT_MESSAGES ,
43
41
Capability::INPUT_IMAGE ,
Original file line number Diff line number Diff line change @@ -27,10 +27,8 @@ final class Nova extends Model
27
27
/**
28
28
* @param array<string, mixed> $options The default options for the model usage
29
29
*/
30
- public function __construct (
31
- string $ name ,
32
- array $ options = [],
33
- ) {
30
+ public function __construct (string $ name , array $ options = [])
31
+ {
34
32
$ capabilities = [
35
33
Capability::INPUT_MESSAGES ,
36
34
Capability::OUTPUT_TEXT ,
Original file line number Diff line number Diff line change @@ -31,10 +31,8 @@ final class ElevenLabs extends Model
31
31
public const SCRIBE_V1 = 'scribe_v1 ' ;
32
32
public const SCRIBE_V1_EXPERIMENTAL = 'scribe_v1_experimental ' ;
33
33
34
- public function __construct (
35
- string $ name ,
36
- array $ options = [],
37
- ) {
34
+ public function __construct (string $ name , array $ options = [])
35
+ {
38
36
parent ::__construct ($ name , [], $ options );
39
37
}
40
38
}
Original file line number Diff line number Diff line change @@ -24,10 +24,8 @@ final class Embeddings extends Model
24
24
/**
25
25
* @param array<string, mixed> $options
26
26
*/
27
- public function __construct (
28
- string $ name ,
29
- array $ options = [],
30
- ) {
27
+ public function __construct (string $ name , array $ options = [])
28
+ {
31
29
parent ::__construct ($ name , [Capability::INPUT_MULTIPLE ], $ options );
32
30
}
33
31
}
Original file line number Diff line number Diff line change @@ -35,10 +35,8 @@ final class Mistral extends Model
35
35
/**
36
36
* @param array<string, mixed> $options
37
37
*/
38
- public function __construct (
39
- string $ name ,
40
- array $ options = [],
41
- ) {
38
+ public function __construct (string $ name , array $ options = [])
39
+ {
42
40
$ capabilities = [
43
41
Capability::INPUT_MESSAGES ,
44
42
Capability::OUTPUT_TEXT ,
Original file line number Diff line number Diff line change @@ -73,10 +73,8 @@ class Gpt extends Model
73
73
/**
74
74
* @param array<mixed> $options The default options for the model usage
75
75
*/
76
- public function __construct (
77
- string $ name ,
78
- array $ options = [],
79
- ) {
76
+ public function __construct (string $ name , array $ options = [])
77
+ {
80
78
$ capabilities = [
81
79
Capability::INPUT_MESSAGES ,
82
80
Capability::OUTPUT_TEXT ,
Original file line number Diff line number Diff line change @@ -28,10 +28,8 @@ final class Perplexity extends Model
28
28
/**
29
29
* @param array<string, mixed> $options
30
30
*/
31
- public function __construct (
32
- string $ name ,
33
- array $ options = [],
34
- ) {
31
+ public function __construct (string $ name , array $ options = [])
32
+ {
35
33
$ capabilities = [
36
34
Capability::INPUT_MESSAGES ,
37
35
Capability::INPUT_PDF ,
You can’t perform that action at this time.
0 commit comments