You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs
Piotr Mardziel 1b9001db47
core[patch]: preserve inspect.iscoroutinefunction with @deprecated decorator (#16295)
Adjusted `deprecate` decorator to make sure decorated async functions
are still recognized as "coroutinefunction" by `inspect`.

Before change, functions such as `LLMChain.acall` which are decorated as
deprecated are not recognized as coroutine functions. After the change,
they are recognized:

```python
import inspect
from langchain import LLMChain

# Is false before change but true after.
inspect.iscoroutinefunction(LLMChain.acall)
```
8 months ago
..
cli Make packages optional (#15727) 9 months ago
community community[patch]: Update Memgraph support (#16360) 8 months ago
core core[patch]: preserve inspect.iscoroutinefunction with @deprecated decorator (#16295) 8 months ago
experimental core[patch]: simple prompt pretty printing (#15968) 8 months ago
langchain langchain[patch]: Release 0.1.2 (#16388) 8 months ago
partners langchain_google_vertexai:Enable the use of langchain's built-in tools in Gemini's function calling (#16341) 8 months ago