langchain-google-genai 0.0.9__tar.gz → 0.0.10rc0__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.
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/PKG-INFO +4 -4
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/pyproject.toml +7 -11
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/LICENSE +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/README.md +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/__init__.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/_common.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/_enums.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/_function_utils.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/chat_models.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/embeddings.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/llms.py +0 -0
- {langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/py.typed +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langchain-google-genai
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.10rc0
|
|
4
4
|
Summary: An integration package connecting Google's genai package and LangChain
|
|
5
|
-
Home-page: https://github.com/langchain-ai/langchain
|
|
5
|
+
Home-page: https://github.com/langchain-ai/langchain-google
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.9,<4.0
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -15,8 +15,8 @@ Provides-Extra: images
|
|
|
15
15
|
Requires-Dist: google-generativeai (>=0.3.1,<0.4.0)
|
|
16
16
|
Requires-Dist: langchain-core (>=0.1,<0.2)
|
|
17
17
|
Requires-Dist: pillow (>=10.1.0,<11.0.0) ; extra == "images"
|
|
18
|
-
Project-URL: Repository, https://github.com/langchain-ai/langchain
|
|
19
|
-
Project-URL: Source Code, https://github.com/langchain-ai/langchain/tree/
|
|
18
|
+
Project-URL: Repository, https://github.com/langchain-ai/langchain-google
|
|
19
|
+
Project-URL: Source Code, https://github.com/langchain-ai/langchain-google/tree/main/libs/genai
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
|
|
22
22
|
# langchain-google-genai
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "langchain-google-genai"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.10rc0"
|
|
4
4
|
description = "An integration package connecting Google's genai package and LangChain"
|
|
5
5
|
authors = []
|
|
6
6
|
readme = "README.md"
|
|
7
|
-
repository = "https://github.com/langchain-ai/langchain"
|
|
7
|
+
repository = "https://github.com/langchain-ai/langchain-google"
|
|
8
8
|
license = "MIT"
|
|
9
9
|
|
|
10
10
|
[tool.poetry.urls]
|
|
11
|
-
"Source Code" = "https://github.com/langchain-ai/langchain/tree/
|
|
11
|
+
"Source Code" = "https://github.com/langchain-ai/langchain-google/tree/main/libs/genai"
|
|
12
12
|
|
|
13
13
|
[tool.poetry.dependencies]
|
|
14
14
|
python = ">=3.9,<4.0"
|
|
@@ -29,7 +29,6 @@ pytest-mock = "^3.10.0"
|
|
|
29
29
|
syrupy = "^4.0.2"
|
|
30
30
|
pytest-watcher = "^0.3.4"
|
|
31
31
|
pytest-asyncio = "^0.21.1"
|
|
32
|
-
langchain-core = { path = "../../core", develop = true }
|
|
33
32
|
numpy = "^1.26.2"
|
|
34
33
|
|
|
35
34
|
[tool.poetry.group.codespell]
|
|
@@ -53,7 +52,6 @@ ruff = "^0.1.5"
|
|
|
53
52
|
|
|
54
53
|
[tool.poetry.group.typing.dependencies]
|
|
55
54
|
mypy = "^0.991"
|
|
56
|
-
langchain-core = { path = "../../core", develop = true }
|
|
57
55
|
types-requests = "^2.28.11.5"
|
|
58
56
|
types-google-cloud-ndb = "^2.2.0.1"
|
|
59
57
|
types-pillow = "^10.1.0.2"
|
|
@@ -62,18 +60,16 @@ types-pillow = "^10.1.0.2"
|
|
|
62
60
|
optional = true
|
|
63
61
|
|
|
64
62
|
[tool.poetry.group.dev.dependencies]
|
|
65
|
-
langchain-core = { path = "../../core", develop = true }
|
|
66
63
|
pillow = "^10.1.0"
|
|
67
64
|
types-requests = "^2.31.0.10"
|
|
68
65
|
types-pillow = "^10.1.0.2"
|
|
69
66
|
types-google-cloud-ndb = "^2.2.0.1"
|
|
70
67
|
|
|
71
|
-
[tool.ruff
|
|
68
|
+
[tool.ruff]
|
|
72
69
|
select = [
|
|
73
|
-
"E",
|
|
74
|
-
"F",
|
|
75
|
-
"I",
|
|
76
|
-
"T201", # print
|
|
70
|
+
"E", # pycodestyle
|
|
71
|
+
"F", # pyflakes
|
|
72
|
+
"I", # isort
|
|
77
73
|
]
|
|
78
74
|
|
|
79
75
|
[tool.mypy]
|
|
File without changes
|
|
File without changes
|
{langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/__init__.py
RENAMED
|
File without changes
|
{langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/_common.py
RENAMED
|
File without changes
|
{langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/_enums.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/llms.py
RENAMED
|
File without changes
|
{langchain_google_genai-0.0.9 → langchain_google_genai-0.0.10rc0}/langchain_google_genai/py.typed
RENAMED
|
File without changes
|