Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: providers update 5 #18550

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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).