Skip to content

Bump Google_GenerativeAI.Web from 3.2.0 to 3.6.3#138

Merged
Freeesia merged 1 commit intomainfrom
dependabot/nuget/korenan.ApiService/Google_GenerativeAI.Web-3.6.3
Feb 9, 2026
Merged

Bump Google_GenerativeAI.Web from 3.2.0 to 3.6.3#138
Freeesia merged 1 commit intomainfrom
dependabot/nuget/korenan.ApiService/Google_GenerativeAI.Web-3.6.3

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2026

Updated Google_GenerativeAI.Web from 3.2.0 to 3.6.3.

Release notes

Sourced from Google_GenerativeAI.Web's releases.

3.6.3

New Features

Batch Inference Support (#​101)

  • Centralized BatchJsonLGenerator - New helper class for generating JSONL files for batch processing with:
    • GenerateContentJsonL() - Generate batch content requests
    • GenerateContentJsonL() - With typed schema support
    • GenerateContentWithFilesJsonL() - With file attachments
    • GenerateEmbeddingJsonL() - For embedding requests
  • BatchOptions class for configuring response schema and system instructions
  • BatchOutputInfo - Retrieve output location from completed batch jobs

Gemini 3 Models

  • Added Gemini3FlashPreview (gemini-3-flash-preview)
  • Added Gemini3ProPreview (gemini-3-pro-preview)
  • Added Gemini3ProImagePreview (gemini-3-pro-image-preview)

MultiModalLiveClient Improvements

  • Auto-merge FunctionTools in SendSetupAsync when setup.Tools is null or empty
  • Automatically includes code execution and Google Search tools if enabled

Bug Fixes

ObjectDisposedException in Live API Function Calls (#​100)

  • Fixed crash when functions are invoked in MultiModalLiveClient without a logger
  • Replaced fire-and-forget Task.Run with proper error handling wrapper
  • Gracefully handles ObjectDisposedException and connection errors during function execution

RetrievalTool with Function Calling (#​102)

  • Fixed INVALID_ARGUMENT (400) error when using corpusIdForRag with function calling on Vertex AI
  • Skip adding RetrievalTool when request contains a FunctionResponse

Full Changelog: gunpal5/Google_GenerativeAI@v3.6.2...v3.6.3

3.6.2

Bug Fixes

Full Changelog: gunpal5/Google_GenerativeAI@v3.6.1...v3.6.2

3.6.1

What's Changed

Full Changelog: gunpal5/Google_GenerativeAI@v3.5.0...v3.6.1

3.5.0

New Features

Gemini 3 Support

  • Added ThinkingLevel enum for controlling thinking/reasoning depth in Gemini 3 models
  • Added ThoughtSignature property support for tracking thought content in responses
  • New ThinkingConfig with IncludeThoughts and ThinkingBudget settings
  • Full integration with Microsoft.Extensions.AI via AdditionalPropertiesKeys

Dynamic Tools Enhancement

  • Added JsonNode and JsonObject parameter support in QuickTool
  • Enables dynamic tool handling where functions receive raw JSON directly
  • Useful for tools that need to accept arbitrary JSON structures

MCP Tools Gemini Live API Compatibility

  • Fixed MCP Tools to work with Gemini Live API
  • Uses Parameters (compatible schema subset) by default
  • Falls back to ParametersJsonSchema only for unsupported schema features
  • Resolves "parameters_json_schema must not be set when parameters is set" error

Image Output Configuration

  • Added support for image output configuration in Microsoft.Extensions.AI
  • New keys: AspectRatio, ImageSize, MimeType, CompressionQuality

Bug Fixes

  • fix: Support Dimensions parameter in GenerativeAI.Microsoft (#​96)
  • fix: Improved Schema serialization for Gemini 3 compatibility
  • fix: MCP Tools now correctly use only one of Parameters OR ParametersJsonSchema

Dependencies

  • Updated to Gunpal5.CSharpToJsonSchema v1.0.0 (forked with AOT compatibility fixes)

New Contributors

  • @​trapezoid - ThoughtSignature support
  • @​dogdie233 - Dimensions parameter fix (#​95)
  • @​xtradegmbh - Image output configuration for MEAI

Full Changelog: gunpal5/Google_GenerativeAI@v3.4.1...v3.5.0

3.4.1

What's Changed

New Contributors

Full Changelog: gunpal5/Google_GenerativeAI@v3.4.0...v3.4.1

3.4.0

New Features

Batch Processing API

Complete implementation of asynchronous batch processing for efficient handling of large-scale AI workloads.

New Types (10):

  • BatchJob - Main batch job entity with comprehensive status tracking
  • BatchJobSource / BatchJobDestination - Support for GCS, BigQuery, and inlined data sources
  • InlinedRequest / InlinedResponse - Direct request/response embedding in batch jobs
  • JobState enum - Job lifecycle management (PENDING, RUNNING, SUCCEEDED, FAILED, etc.)
  • JobError - Structured error reporting for failed batch operations
  • ListBatchJobsResponse - Paginated batch job listings

Features:

  • Create batch jobs for content generation and embeddings
  • Support for multiple input sources (Google Cloud Storage, BigQuery, inlined requests)
  • Configurable output destinations
  • Job status monitoring and management
  • Job cancellation and deletion operations

Model Constants Update

Added support for latest Google AI and Vertex AI models with cleanup of deprecated versions.

Added Models:

  • Gemini 2.5 series: Gemini25Flash, Gemini25FlashLite, Gemini25Pro
  • Latest aliases: GeminiFlashLatest, GeminiFlashLiteLatest, GeminiProLatest
  • Gemini 2.0: Gemini2FlashLatest, Gemini2FlashLite
  • Gemma 3 variants: Gemma3_1B, Gemma3_4B, Gemma3_12B, Gemma3_27B, Gemma3n_E4B, Gemma3n_E2B
  • Imagen 4: Imagen4Generate001, Imagen4UltraGenerate001, Imagen4FastGenerate001
  • Veo 3 & 3.1: Veo3Generate001, Veo3FastGenerate001, Veo31GeneratePreview, Veo31FastGeneratePreview
  • Experimental: LearnLM2FlashExp for educational applications

Removed Models:

  • All Gemini 1.5 models (Flash, Flash-8B, Pro)
  • All Gemini 1.0 models (Pro, Pro Vision)
  • Deprecated Gemini 2.x experimental variants

Enhanced Type System

Systematic alignment with Python SDK to ensure complete API coverage.

51+ New Properties Added Across 16 Core Types:

Enhanced Multimodal Support:

  • Blob.DisplayName / FileData.DisplayName - User-friendly file identification
  • Part.ThoughtSignature - Thought reuse optimization
  • Video.Uri - Fixed JSON property mapping from "gcsUri" to "uri"

Advanced Safety Controls:

  • SafetySetting.Method - Harm blocking method selection (HarmBlockMethod enum)
  • SafetyRating.OverwrittenThreshold, ProbabilityScore, Severity, SeverityScore - Enhanced safety metrics
    ... (truncated)

3.3

What's Changed

  • @​stephentoub Update to M.E.AI.Abstractions 9.9 Update to M.E.AI.Abstractions 9.9 gunpal5/Google_GenerativeAI#75
  • feat: add CODE_RETRIEVAL_QUERY task type and enhance embedding task type support
      - Add CODE_RETRIEVAL_QUERY task type for code search optimization
      - Update all TaskType enum descriptions with optimization details and use cases
      - Add WithTaskType() extension method for easier task type configuration
      - Add comprehensive unit tests for new task type functionality

Commits viewable in compare view.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

---
updated-dependencies:
- dependency-name: Google_GenerativeAI.Web
  dependency-version: 3.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Feb 9, 2026
@Freeesia Freeesia merged commit 3697042 into main Feb 9, 2026
1 check passed
@dependabot dependabot bot deleted the dependabot/nuget/korenan.ApiService/Google_GenerativeAI.Web-3.6.3 branch February 9, 2026 13:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant