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.

@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langchain-google-genai
3
- Version: 0.0.9
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/master/libs/partners/google-genai
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.9"
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/master/libs/partners/google-genai"
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.lint]
68
+ [tool.ruff]
72
69
  select = [
73
- "E", # pycodestyle
74
- "F", # pyflakes
75
- "I", # isort
76
- "T201", # print
70
+ "E", # pycodestyle
71
+ "F", # pyflakes
72
+ "I", # isort
77
73
  ]
78
74
 
79
75
  [tool.mypy]