diff --git a/docs/docs/integrations/providers/slack.mdx b/docs/docs/integrations/providers/slack.mdx index 10bf01b015..d5d632dc74 100644 --- a/docs/docs/integrations/providers/slack.mdx +++ b/docs/docs/integrations/providers/slack.mdx @@ -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 +``` diff --git a/docs/docs/integrations/providers/telegram.mdx b/docs/docs/integrations/providers/telegram.mdx index 4a562ca529..124cbd509a 100644 --- a/docs/docs/integrations/providers/telegram.mdx +++ b/docs/docs/integrations/providers/telegram.mdx @@ -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 +``` diff --git a/docs/docs/integrations/providers/tencent.mdx b/docs/docs/integrations/providers/tencent.mdx index bd0190e61d..9efe6deed7 100644 --- a/docs/docs/integrations/providers/tencent.mdx +++ b/docs/docs/integrations/providers/tencent.mdx @@ -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 @@ -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 -``` \ No newline at end of file +``` + +## 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). + diff --git a/docs/docs/integrations/providers/twitter.mdx b/docs/docs/integrations/providers/twitter.mdx index 7455283bf7..d2ba4fecb5 100644 --- a/docs/docs/integrations/providers/twitter.mdx +++ b/docs/docs/integrations/providers/twitter.mdx @@ -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).