Skip to content

Commit

Permalink
docs: providers update 5 (langchain-ai#18550)
Browse files Browse the repository at this point in the history
Added missed sections. Added descriptions.
  • Loading branch information
leo-gan authored and Dave Bechberger committed Mar 29, 2024
1 parent c841e3f commit 198c4f1
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 23 deletions.
10 changes: 9 additions & 1 deletion docs/docs/integrations/providers/slack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@ There isn't any special setup for it.



## Document Loader
## Document loader

See a [usage example](/docs/integrations/document_loaders/slack).

```python
from langchain_community.document_loaders import SlackDirectoryLoader
```

## Chat loader

See a [usage example](/docs/integrations/chat_loaders/slack).

```python
from langchain_community.chat_loaders.slack import SlackChatLoader
```
8 changes: 8 additions & 0 deletions docs/docs/integrations/providers/telegram.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,11 @@ See a [usage example](/docs/integrations/document_loaders/telegram).
from langchain_community.document_loaders import TelegramChatFileLoader
from langchain_community.document_loaders import TelegramChatApiLoader
```

## Chat loader

See a [usage example](/docs/integrations/chat_loaders/telegram).

```python
from langchain_community.chat_loaders.telegram import TelegramChatLoader
```
57 changes: 35 additions & 22 deletions docs/docs/integrations/providers/tencent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,6 @@ For more information, see [this notebook](/docs/integrations/chat/tencent_hunyua
from langchain_community.chat_models import ChatHunyuan
```

## Vector Store

>[Tencent Cloud VectorDB](https://www.tencentcloud.com/products/vdb) is a fully managed,
> self-developed enterprise-level distributed database service
>dedicated to storing, retrieving, and analyzing multidimensional vector data. The database supports a variety of index
>types and similarity calculation methods, and a single index supports 1 billion vectors, millions of QPS, and
>millisecond query latency. `Tencent Cloud Vector Database` can not only provide an external knowledge base for large
>models and improve the accuracy of large models' answers, but also be widely used in AI fields such as
>recommendation systems, NLP services, computer vision, and intelligent customer service.
Install the Python SDK:

```bash
pip install tcvectordb
```

For more information, see [this notebook](/docs/integrations/vectorstores/tencentvectordb)

```python
from langchain_community.vectorstores import TencentVectorDB
```

## Document Loaders

Expand Down Expand Up @@ -79,4 +58,38 @@ For more information, see [this notebook](/docs/integrations/document_loaders/te
```python
from langchain_community.document_loaders import TencentCOSFileLoader
from qcloud_cos import CosConfig
```
```

## Vector Store

### Tencent VectorDB

>[Tencent Cloud VectorDB](https://www.tencentcloud.com/products/vdb) is a fully managed,
> self-developed enterprise-level distributed database service
>dedicated to storing, retrieving, and analyzing multidimensional vector data. The database supports a variety of index
>types and similarity calculation methods, and a single index supports 1 billion vectors, millions of QPS, and
>millisecond query latency. `Tencent Cloud Vector Database` can not only provide an external knowledge base for large
>models and improve the accuracy of large models' answers, but also be widely used in AI fields such as
>recommendation systems, NLP services, computer vision, and intelligent customer service.
Install the Python SDK:

```bash
pip install tcvectordb
```

For more information, see [this notebook](/docs/integrations/vectorstores/tencentvectordb)

```python
from langchain_community.vectorstores import TencentVectorDB
```

## Chat loader

### WeChat

>[WeChat](https://www.wechat.com/) or `Weixin` in Chinese is a Chinese
> instant messaging, social media, and mobile payment app developed by `Tencent`.
See a [usage example](/docs/integrations/chat_loaders/wechat).

4 changes: 4 additions & 0 deletions docs/docs/integrations/providers/twitter.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ See a [usage example](/docs/integrations/document_loaders/twitter).
```python
from langchain_community.document_loaders import TwitterTweetLoader
```

## Chat loader

See a [usage example](/docs/integrations/chat_loaders/twitter).

0 comments on commit 198c4f1

Please sign in to comment.