generativeModel(ModelName::GEMINI_PRO)->generateContent( new TextPart('Write a short, creative story about a knight and a dragon.') ); // Display the generated text $data['gemini_response'] = $response->text(); } catch (\Exception $e) { // Handle any errors that occur during the API call $data['gemini_response'] = 'An error occurred: ' . $e->getMessage(); } print_rr($data); } }