Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/af-char-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Xm0onh committed Jan 18, 2025
2 parents 9711fc4 + 637d717 commit 93f7a82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/config.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ twitter:
POST_INTERVAL_MINUTES: 90
POST_TWEETS: false

autodrive:
auto_drive:
upload: false

llm:
Expand Down
2 changes: 1 addition & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 93f7a82

Please sign in to comment.