Metadata-Version: 2.3
Name: langchain-abso
Version: 0.1.1
Summary: An integration package connecting Abso and LangChain
License: MIT
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: langchain-core (>=0.3.15,<0.4.0)
Project-URL: Repository, https://github.com/langchain-ai/langchain
Project-URL: Release Notes, https://github.com/langchain-ai/langchain/releases?q=tag%3A%22abso%3D%3D0%22&expanded=true
Project-URL: Source Code, https://github.com/langchain-ai/langchain/tree/master/libs/partners/abso
Description-Content-Type: text/markdown

# langchain-abso

This package contains the LangChain integration with Abso

## Installation

```bash
pip install -U langchain-abso
```

You need to set the environment variable `OPENAI_API_KEY` to use Abso.


## Chat Models

`ChatAbso` class exposes chat models from Abso.

```python
from langchain_abso import ChatAbso

llm = ChatAbso(fast_model="gpt-4o", slow_model="o3-mini")
llm.invoke("Sing a ballad of LangChain.")
```

