-
Notifications
You must be signed in to change notification settings - Fork 16.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs:
integrations
references update (#25322)
Added missed provider pages. Fixed formats and added descriptions and links.
- Loading branch information
Showing
6 changed files
with
133 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# IEIT Systems | ||
|
||
>[IEIT Systems](https://en.ieisystem.com/) is a Chinese information technology company | ||
> established in 1999. It provides the IT infrastructure products, solutions, | ||
> and services, innovative IT products and solutions across cloud computing, | ||
> big data, and artificial intelligence. | ||
|
||
## LLMs | ||
|
||
See a [usage example](/docs/integrations/llms/yuan2). | ||
|
||
```python | ||
from langchain_community.llms.yuan2 import Yuan2 | ||
``` | ||
|
||
## Chat models | ||
|
||
See the [installation instructions](/docs/integrations/chat/yuan2/#setting-up-your-api-server). | ||
|
||
Yuan2.0 provided an OpenAI compatible API, and ChatYuan2 is integrated into langchain by using `OpenAI client`. | ||
Therefore, ensure the `openai` package is installed. | ||
|
||
```bash | ||
pip install openai | ||
``` | ||
See a [usage example](/docs/integrations/chat/yuan2). | ||
|
||
```python | ||
from langchain_community.chat_models import ChatYuan2 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# iFlytek | ||
|
||
>[iFlytek](https://www.iflytek.com) is a Chinese information technology company | ||
> established in 1999. It creates voice recognition software and | ||
> voice-based internet/mobile products covering education, communication, | ||
> music, intelligent toys industries. | ||
|
||
## Installation and Setup | ||
|
||
- Get `SparkLLM` app_id, api_key and api_secret from [iFlyTek SparkLLM API Console](https://console.xfyun.cn/services/bm3) (for more info, see [iFlyTek SparkLLM Intro](https://xinghuo.xfyun.cn/sparkapi)). | ||
- Install the Python package (not for the embedding models): | ||
|
||
```bash | ||
pip install websocket-client | ||
``` | ||
|
||
## LLMs | ||
|
||
See a [usage example](/docs/integrations/llms/sparkllm). | ||
|
||
```python | ||
from langchain_community.llms import SparkLLM | ||
``` | ||
|
||
## Chat models | ||
|
||
See a [usage example](/docs/integrations/chat/sparkllm). | ||
|
||
```python | ||
from langchain_community.chat_models import ChatSparkLLM | ||
``` | ||
|
||
## Embedding models | ||
|
||
```python | ||
from langchain_community.embeddings import SparkLLMTextEmbeddings | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Zhipu AI | ||
|
||
>[Zhipu AI](https://www.zhipuai.cn/en/aboutus), originating from the technological | ||
> advancements of `Tsinghua University's Computer Science Department`, | ||
> is an artificial intelligence company with the mission of teaching machines | ||
> to think like humans. Its world-leading AI team has developed the cutting-edge | ||
> large language and multimodal models and built the high-precision billion-scale | ||
> knowledge graphs, the combination of which uniquely empowers us to create a powerful | ||
> data- and knowledge-driven cognitive engine towards artificial general intelligence. | ||
|
||
## Chat models | ||
|
||
See a [usage example](/docs/integrations/chat/zhipuai). | ||
|
||
```python | ||
from langchain_community.chat_models import ChatZhipuAI | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters