File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ public function is_connected(): bool {
109
109
* @throws Generative_AI_Exception Thrown if the request fails or the response is invalid.
110
110
*/
111
111
public function list_models ( array $ request_options = array () ): array {
112
- $ request = $ this ->api ->create_list_models_request ();
112
+ $ request = $ this ->api ->create_list_models_request ( array (), $ request_options );
113
113
$ response_data = $ this ->api ->make_request ( $ request )->get_data ();
114
114
115
115
if ( ! isset ( $ response_data ['data ' ] ) || ! $ response_data ['data ' ] ) {
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ public function is_connected(): bool {
107
107
* @throws Generative_AI_Exception Thrown if the request fails or the response is invalid.
108
108
*/
109
109
public function list_models ( array $ request_options = array () ): array {
110
- $ request = $ this ->api ->create_list_models_request ();
110
+ $ request = $ this ->api ->create_list_models_request ( array (), $ request_options );
111
111
$ response_data = $ this ->api ->make_request ( $ request )->get_data ();
112
112
113
113
if ( ! isset ( $ response_data ['models ' ] ) || ! $ response_data ['models ' ] ) {
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ public function is_connected(): bool {
106
106
* @throws Generative_AI_Exception Thrown if the request fails or the response is invalid.
107
107
*/
108
108
public function list_models ( array $ request_options = array () ): array {
109
- $ request = $ this ->api ->create_list_models_request ();
109
+ $ request = $ this ->api ->create_list_models_request ( array (), $ request_options );
110
110
$ response_data = $ this ->api ->make_request ( $ request )->get_data ();
111
111
112
112
if ( ! isset ( $ response_data ['data ' ] ) || ! $ response_data ['data ' ] ) {
You can’t perform that action at this time.
0 commit comments