Tencent Cloud Object Storage (COS)는 HTTP/HTTPS 프로토콜을 통해 어디서나 원하는 양의 데이터를 저장할 수 있는 분산 스토리지 서비스입니다. COS는 데이터 구조나 형식에 제한이 없습니다. 또한 버킷 크기 제한이나 파티션 관리가 없어 데이터 전송, 데이터 처리, 데이터 레이크 등 거의 모든 사용 사례에 적합합니다. COS는 웹 기반 콘솔, 다국어 SDK 및 API, 명령줄 도구, 그래픽 도구를 제공합니다. Amazon S3 API와 잘 호환되어 커뮤니티 도구 및 플러그인에 빠르게 액세스할 수 있습니다.
이 문서는 Tencent COS File에서 document object를 로드하는 방법을 다룹니다.
pip install -qU  cos-python-sdk-v5
from langchain_community.document_loaders import TencentCOSFileLoader
from qcloud_cos import CosConfig
conf = CosConfig(
    Region="your cos region",
    SecretId="your cos secret_id",
    SecretKey="your cos secret_key",
)
loader = TencentCOSFileLoader(conf=conf, bucket="you_cos_bucket", key="fake.docx")
loader.load()

Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.
I