-
-
Notifications
You must be signed in to change notification settings - Fork 982
Add documentation for using Gemini 3.1 Pro Preview #428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -200,8 +200,20 @@ cd pal-mcp-server | |
|
|
||
| ## Provider Configuration | ||
|
|
||
| PAL activates any provider that has credentials in your `.env`. See `.env.example` for deeper customization. | ||
| ## Using Gemini 3.1 Pro Preview | ||
|
|
||
| PAL MCP supports Gemini models through Google's Generative AI API. You can use newer models such as **Gemini 3.1 Pro Preview** if they are available in your API access. | ||
|
|
||
| ### Steps to Use Gemini 3.1 Pro Preview | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| 1. **Get a Gemini API Key** | ||
| - Visit: https://makersuite.google.com/app/apikey | ||
| - Generate your API key | ||
|
|
||
| 2. **Set your API Key** | ||
| Add it to your environment variables or `.env` file: | ||
| ```bash | ||
| GEMINI_API_KEY=your_api_key_here | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| ## Core Tools | ||
|
Comment on lines
+215
to
217
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The new Gemini setup section opens a fenced block with Useful? React with 👍 / 👎. |
||
|
|
||
| > **Note:** Each tool comes with its own multi-step workflow, parameters, and descriptions that consume valuable context window space even when not in use. To optimize performance, some tools are disabled by default. See [Tool Configuration](#tool-configuration) below to enable them. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version mismatch: This section refers to Gemini 3.1, but the configuration file conf/gemini_models.json (line 30) defines the model as Gemini 3.0 (gemini-3-pro-preview). Please ensure the documentation matches the actual model configuration.