Metadata-Version: 2.1
Name: langchain-netmind
Version: 0.1.0
Summary: An integration package connecting Netmind and LangChain
Home-page: https://github.com/langchain-ai/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
Requires-Dist: jupyter (>=1.1.1,<2.0.0)
Requires-Dist: langchain-core (>=0.3.15,<0.4.0)
Requires-Dist: langchain-openai (>=0.3.7,<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%22netmind%3D%3D0%22&expanded=true
Project-URL: Source Code, https://github.com/langchain-ai/langchain/tree/master/libs/partners/netmind
Description-Content-Type: text/markdown

# langchain-netmind

This package contains the LangChain integration with Netmind

## Installation

```bash
pip install -U langchain-netmind
```

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

* TODO: fill this out

## Chat Models

`ChatNetmind` class exposes chat models from Netmind.

```python
from langchain_netmind import ChatNetmind

llm = ChatNetmind()
llm.invoke("Sing a ballad of LangChain.")
```

## Embeddings

`NetmindEmbeddings` class exposes embeddings from Netmind.

```python
from langchain_netmind import NetmindEmbeddings

embeddings = NetmindEmbeddings()
embeddings.embed_query("What is the meaning of life?")
```

