Metadata-Version: 2.1
Name: langchain-meta
Version: 0.5.0
Summary: An integration package connecting Llama and LangChain
License: MIT
Project-URL: Source Code, https://github.com/langchain-ai/langchain-meta/tree/main/libs/meta
Project-URL: repository, https://github.com/langchain-ai/langchain-meta
Requires-Python: <4.0,>=3.10
Requires-Dist: langchain-openai<2.0.0,>=1.3.5
Requires-Dist: langchain-core<2.0.0,>=1.4.9
Requires-Dist: requests<3,>=2
Requires-Dist: aiohttp<4,>=3.9.1
Requires-Dist: llama-api-client>=0.1.0
Requires-Dist: regex>=2023.0.0
Description-Content-Type: text/markdown

# langchain-meta

LangChain integration for [Meta's Model API](https://dev.meta.ai/docs/getting-started/overview/).

## Install

```bash
pip install -U langchain-meta
export MODEL_API_KEY="your-api-key"
```

## Usage

```python
from langchain_meta import ChatMetaModel

llm = ChatMetaModel(model="muse-spark-1.1")
llm.invoke("Hello!")
```
