""" 根据bucket的名字返回对应的s3 AK, SK,endpoint三元组 """ def get_s3_config(bucket_name: str): """ ~/magic-pdf.json 读出来 """ ak , sk, endpoint = "", "", "" # TODO 请实现这个函数 return ak, sk, endpoint