@intrvls/langchain-google-genai 3.0.0-alpha.0 → 3.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/README.md +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @intrvls/langchain-google-genai
|
|
2
2
|
|
|
3
|
+
## 3.0.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- **`responseSchema` as a constructor option.** `responseSchema` can now be set on `GoogleGenerativeAIChatInput` instead of only per call. Setting it at construction keeps the instance a real `ChatGoogleGenerativeAI` (so `.bindTools()` and tool-calling agents keep working) and forwards the schema on every request; previously a default schema required `.withConfig()`, which returns a `RunnableBinding` that loses `.bindTools()`. A `responseSchema` passed explicitly at call time still takes precedence.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- **Built-in tools alongside function calling.** Gemini rejects requests that combine a server-side built-in tool (`googleSearch`, `urlContext`, `codeExecution`, ...) with function calling unless `toolConfig.includeServerSideToolInvocations` is set. The wrapper now detects a built-in tool among the bound tools and injects the flag, preserving any `toolConfig` already produced from `toolChoice`.
|
|
12
|
+
|
|
3
13
|
## 3.0.0-alpha.0
|
|
4
14
|
|
|
5
15
|
### Major Changes
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intrvls/langchain-google-genai",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.1",
|
|
4
4
|
"description": "Standalone port of @langchain/google-genai 2.1.24, re-based onto the new @google/genai SDK and pinned to the @langchain/core line n8n ships (1.1.x).",
|
|
5
5
|
"author": "Ervin Chai <ervin.chai1108@gmail.com>",
|
|
6
6
|
"license": "MIT",
|