Download the PHP package bdowson/simple-gemini without Composer
On this page you can find all versions of the php package bdowson/simple-gemini. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package simple-gemini
Simple Gemini
Simple Gemini is a lightweight PHP package that lets you send prompts to Google's Gemini AI and retrieve generated responses. It handles authentication using your Google service account credentials and makes API calls to the Google Cloud AI Platform.
Note: You must have a valid Google service account JSON file with the necessary permissions and your Google Cloud project must be properly configured.
Table of Contents
- Installation
- Usage
- Configuration
- To Dos
- License
- Support
Installation
Install the package via Composer:
Usage
Below is a simple example to get you started:
Configuration
When creating a new instance of SimpleGemini
, you need to provide:
-
Google Credentials Path:
The file path to your Google service account JSON file. -
Project:
Your Google Cloud project ID. -
Location:
The location/region where your model is hosted. See here for supported locations: https://cloud.google.com/vertex-ai/docs/general/locations#available-regions -
Model:
The name of the model you want to use. See here for supported models: https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/inference#supported-models -
Generation Config (Optional):
An array of configuration options for text generation. For example:For more options, see here: https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/inference#generationconfig
- Safety Settings (Optional):
An array specifying safety settings for the generated content. Available settings: https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/inference#safetysetting
To DOs
- Automated testing
-
Improve documentation
License
This project is licensed under the GNU General Public License. See the LICENSE file for details.
Support
If you encounter issues or have suggestions, please open an issue on this repo
Happy coding!