mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-02 21:23:32 +00:00
- Added missed providers - Added links, descriptions in related examples - Formatted in a consistent format Co-authored-by: Erick Friis <erick@langchain.dev>
38 lines
855 B
Plaintext
38 lines
855 B
Plaintext
# Huawei
|
|
|
|
>[Huawei Technologies Co., Ltd.](https://www.huawei.com/) is a Chinese multinational
|
|
> digital communications technology corporation.
|
|
>
|
|
>[Huawei Cloud](https://www.huaweicloud.com/intl/en-us/product/) provides a comprehensive suite of
|
|
> global cloud computing services.
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
To access the `Huawei Cloud`, you need an access token.
|
|
|
|
You also have to install a python library:
|
|
|
|
```bash
|
|
pip install -U esdk-obs-python
|
|
```
|
|
|
|
|
|
## Document Loader
|
|
|
|
### Huawei OBS Directory
|
|
|
|
See a [usage example](/docs/integrations/document_loaders/huawei_obs_directory).
|
|
|
|
```python
|
|
from langchain_community.document_loaders import OBSDirectoryLoader
|
|
```
|
|
|
|
### Huawei OBS File
|
|
|
|
See a [usage example](/docs/integrations/document_loaders/huawei_obs_file).
|
|
|
|
```python
|
|
from langchain_community.document_loaders.obs_file import OBSFileLoader
|
|
```
|