Metadata-Version: 2.3
Name: langchain-nimble
Version: 1.0.0
Summary: An integration package connecting Nimble and LangChain
Home-page: https://github.com/Nimbleway/langchain-nimble
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/Nimbleway/langchain-nimble
Project-URL: Release Notes, https://github.com/langchain-ai/langchain/releases?q=tag%3A%22nimble%3D%3D0%22&expanded=true
Project-URL: Source Code, https://github.com/langchain-ai/langchain/tree/master/libs/partners/nimble
Description-Content-Type: text/markdown

# langchain-nimble

This package contains the LangChain integration with Nimble

## Installation

```bash
pip install -U langchain-nimble
```

And you should configure credentials by setting the following environment variables:

```bash
export NIMBLE_API_KEY=<PLACEHOLDER_FOR_YOUR_NIMBLE_API_KEY>
```
You can get your API key from [Nimble's website](https://nimbleway.com/)
Just, go to the log-in page and sign up for a new account. After that, you can get your API key from the dashboard.

## Retrievers
`NimbleSearchRetriever` class exposes LLMs from Nimble.

```python
from langchain_nimble import NimbleSearchRetriever

retriever = NimbleSearchRetriever()
retriever.invoke("Nimbleway")
```

For the full reference with examples please see [our documentation](https://github.com/Nimbleway/langchain-nimble/blob/main/docs/nimbleway.ipynb).

