File tree Expand file tree Collapse file tree 3 files changed +4
-31
lines changed Expand file tree Collapse file tree 3 files changed +4
-31
lines changed Original file line number Diff line number Diff line change 1
- """Main entrypoint into LangChain.
1
+ """Main entrypoint into LangChain."""
2
2
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"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies = [
13
13
]
14
14
15
15
name = " langchain"
16
- version = " 1.0.0a10 "
16
+ version = " 1.0.0a11 "
17
17
description = " Building applications with LLMs through composability"
18
18
readme = " README.md"
19
19
You can’t perform that action at this time.
0 commit comments