langchain-google-genai 2.0.2__tar.gz → 2.0.3__tar.gz

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.

Potentially problematic release.


This version of langchain-google-genai might be problematic. Click here for more details.

Files changed (16) hide show
  1. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/PKG-INFO +1 -1
  2. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/_function_utils.py +0 -1
  3. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/pyproject.toml +15 -1
  4. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/LICENSE +0 -0
  5. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/README.md +0 -0
  6. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/__init__.py +0 -0
  7. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/_common.py +0 -0
  8. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/_enums.py +0 -0
  9. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/_genai_extension.py +0 -0
  10. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/_image_utils.py +0 -0
  11. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/chat_models.py +0 -0
  12. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/embeddings.py +0 -0
  13. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/genai_aqa.py +0 -0
  14. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/google_vector_store.py +0 -0
  15. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/llms.py +0 -0
  16. {langchain_google_genai-2.0.2 → langchain_google_genai-2.0.3}/langchain_google_genai/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langchain-google-genai
3
- Version: 2.0.2
3
+ Version: 2.0.3
4
4
  Summary: An integration package connecting Google's genai package and LangChain
5
5
  Home-page: https://github.com/langchain-ai/langchain-google
6
6
  License: MIT
@@ -132,7 +132,6 @@ def _dict_to_gapic_schema(schema: Dict[str, Any]) -> Optional[gapic.Schema]:
132
132
  def _format_dict_to_function_declaration(
133
133
  tool: Union[FunctionDescription, Dict[str, Any]],
134
134
  ) -> gapic.FunctionDeclaration:
135
- print(tool)
136
135
  return gapic.FunctionDeclaration(
137
136
  name=tool.get("name") or tool.get("title"),
138
137
  description=tool.get("description"),
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "langchain-google-genai"
3
- version = "2.0.2"
3
+ version = "2.0.3"
4
4
  description = "An integration package connecting Google's genai package and LangChain"
5
5
  authors = []
6
6
  readme = "README.md"
@@ -37,12 +37,18 @@ langchain-standard-tests = { git = "https://github.com/langchain-ai/langchain.gi
37
37
  [tool.codespell]
38
38
  ignore-words-list = "rouge"
39
39
 
40
+
41
+
42
+
40
43
  [tool.poetry.group.codespell]
41
44
  optional = true
42
45
 
43
46
  [tool.poetry.group.codespell.dependencies]
44
47
  codespell = "^2.2.0"
45
48
 
49
+
50
+
51
+
46
52
  [tool.poetry.group.test_integration]
47
53
  optional = true
48
54
 
@@ -50,12 +56,17 @@ optional = true
50
56
  pillow = "^10.1.0"
51
57
 
52
58
 
59
+
60
+
53
61
  [tool.poetry.group.lint]
54
62
  optional = true
55
63
 
56
64
  [tool.poetry.group.lint.dependencies]
57
65
  ruff = "^0.1.5"
58
66
 
67
+
68
+
69
+
59
70
  [tool.poetry.group.typing.dependencies]
60
71
  mypy = "^1.10"
61
72
  types-requests = "^2.28.11.5"
@@ -65,6 +76,9 @@ types-protobuf = "^4.24.0.20240302"
65
76
  langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core" }
66
77
  numpy = "^1.26.2"
67
78
 
79
+
80
+
81
+
68
82
  [tool.poetry.group.dev]
69
83
  optional = true
70
84