#!/bin/bash
# LAS PDF Parsing Skill Configuration Example
# Copy this file to env.sh, fill in actual configurations and run `source env.sh` to use

# LAS API Configuration
export LAS_API_KEY="your-las-api-key-here"
export LAS_REGION="cn-beijing"  # Supported regions: cn-beijing|cn-shanghai
# export LAS_API_BASE=""  # Optional, custom API endpoint

# TOS 配置（本地文件上传需要）
export TOS_ACCESS_KEY="your-tos-access-key-here"
export TOS_SECRET_KEY="your-tos-secret-key-here"
export TOS_BUCKET="your-tos-bucket-name-here"
# export TOS_ENDPOINT=""  # 可选，自定义TOS endpoint
