Metadata-Version: 2.4
Name: langchain-siliconflow
Version: 0.2.3
Summary: An integration package connecting SiliconFlow and LangChain
License: MIT
License-File: LICENSE
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: langchain-core (>=1.1.3,<2.0.0)
Requires-Dist: langchain-openai (>=1.1.1,<2.0.0)
Requires-Dist: openai (>=2.9.0,<3.0.0)
Project-URL: Repository, https://github.com/siliconflow/langchain-siliconflow
Project-URL: Release Notes, https://github.com/siliconflow/langchain-siliconflow/releases
Project-URL: Source Code, https://github.com/siliconflow/langchain-siliconflow
Description-Content-Type: text/markdown

# langchain-siliconflow

This package contains the LangChain integration with SiliconFlow

## Installation

```bash
pip install -U langchain-siliconflow
```

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

```bash
export SILICONFLOW_API_KEY="your-api-key"
```

You can set the following environment variable to use the `.cn` endpoint:

```bash
export SILICONFLOW_BASE_URL="https://api.siliconflow.cn/v1"
```

## Chat Models

`ChatSiliconFlow` class exposes chat models from SiliconFlow.

```python
from langchain_siliconflow import ChatSiliconFlow

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

## Embeddings

`SiliconFlowEmbeddings` class exposes embeddings from SiliconFlow.

```python
from langchain_siliconflow import SiliconFlowEmbeddings

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

## LLMs
`SiliconFlowLLM` class exposes LLMs from SiliconFlow.

```python
from langchain_siliconflow import SiliconFlowLLM

llm = SiliconFlowLLM()
llm.invoke("The meaning of life is")
```

