From b4e211019bfb863aded5856e882ac6bc38aa66e8 Mon Sep 17 00:00:00 2001 From: abearxiong Date: Mon, 12 Jan 2026 00:57:21 +0800 Subject: [PATCH] update --- prompts/.env.example | 2 +- prompts/src/app.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/prompts/.env.example b/prompts/.env.example index a7452d6..7950951 100644 --- a/prompts/.env.example +++ b/prompts/.env.example @@ -19,7 +19,7 @@ JIMENG_TIMEOUT=300000 # S3 S3_BUCKET=your_bucket_name S3_ACCESS_KEY_ID=your_access_key -S3_ACCESS_KEY_SECRET=your_secret_key +S3_SECRET_ACCESS_KEY=your_secret_key S3_REGION=cn-beijing S3_ENDPOINT=tos-cn-beijing.volces.com diff --git a/prompts/src/app.ts b/prompts/src/app.ts index 4c490da..edb9820 100644 --- a/prompts/src/app.ts +++ b/prompts/src/app.ts @@ -19,7 +19,7 @@ export { } export const ossService = useContextKey('oss', new OSSService({ accessKeyId: config.S3_ACCESS_KEY_ID, - accessKeySecret: config.S3_ACCESS_KEY_SECRET, + accessKeySecret: config.S3_SECRET_ACCESS_KEY, bucketName: config.S3_BUCKET_NAME, region: config.S3_REGION, endpoint: config.S3_ENDPOINT,