diff --git a/README.md b/README.md index 6ac851eb..4fd595c1 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ The framework uses a YAML-based character system that allows you to create and r 2. Create new characters by copying the example: ```bash # Create a new character - cp config/characters/joy_builder.yaml config/characters/my-character.yaml + cp config/characters/character.example.yaml config/characters/my-character.yaml ``` ### Character Configuration diff --git a/config/config.example.yaml b/config/config.example.yaml index 164b8027..32a6c160 100644 --- a/config/config.example.yaml +++ b/config/config.example.yaml @@ -10,7 +10,7 @@ twitter: POST_INTERVAL_MINUTES: 90 POST_TWEETS: false -autodrive: +auto_drive: upload: false llm: diff --git a/src/config/index.ts b/src/config/index.ts index 9073938d..7ba5ab26 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -78,7 +78,7 @@ export const config = (() => { autoDriveConfig: { AUTO_DRIVE_API_KEY: process.env.AUTO_DRIVE_API_KEY, AUTO_DRIVE_ENCRYPTION_PASSWORD: process.env.AUTO_DRIVE_ENCRYPTION_PASSWORD, - AUTO_DRIVE_UPLOAD: yamlConfig.auto_drive?.upload ?? false, + AUTO_DRIVE_UPLOAD: yamlConfig.auto_drive.upload ?? false, }, blockchainConfig: { RPC_URL: process.env.RPC_URL || undefined,