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/core/tests
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
..
integration_tests core[patch], langchain[patch]: fix required deps (#14373) 10 months ago
unit_tests core[patch]: preserve inspect.iscoroutinefunction with @deprecated decorator (#16295) 8 months ago
__init__.py Separate out langchain_core package (#13577) 10 months ago