Skip to content

Commit 08bf8f3

Browse files
release(langchain_v1): 1.0.0a11 (#33307)
* Consolidating agents * Removing remainder of globals * Removing `ToolNode`
1 parent 00f4db5 commit 08bf8f3

File tree

3 files changed

+4
-31
lines changed

3 files changed

+4
-31
lines changed
Lines changed: 2 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,3 @@
1-
"""Main entrypoint into LangChain.
1+
"""Main entrypoint into LangChain."""
22

3-
AKA `version.py` in CI's `check_version_equality`.
4-
`langchain_v1 versions in pyproject.toml and __init__.py do not match!`
5-
"""
6-
7-
from typing import Any
8-
9-
__version__ = "1.0.0a10"
10-
11-
12-
def __getattr__(name: str) -> Any: # noqa: ANN401
13-
"""Get an attribute from the package.
14-
15-
TODO: will be removed in a future alpha version.
16-
"""
17-
if name == "verbose":
18-
from langchain.globals import _verbose
19-
20-
return _verbose
21-
if name == "debug":
22-
from langchain.globals import _debug
23-
24-
return _debug
25-
if name == "llm_cache":
26-
from langchain.globals import _llm_cache
27-
28-
return _llm_cache
29-
msg = f"Could not find: {name}"
30-
raise AttributeError(msg)
3+
__version__ = "1.0.0a11"

libs/langchain_v1/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies = [
1313
]
1414

1515
name = "langchain"
16-
version = "1.0.0a10"
16+
version = "1.0.0a11"
1717
description = "Building applications with LLMs through composability"
1818
readme = "README.md"
1919

libs/langchain_v1/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)