Skip to content

Commit

Permalink
fix: fix (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
glucrypto authored Dec 6, 2024
1 parent 86f93a2 commit 101533d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/agent/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,25 +80,25 @@ const instance = await ai.initialize({
{
type: "image",
schedule: "0 */4 * * *", // Every 4 hours
enabled: false,
enabled: true,
},
{
type: "market_update",
schedule: "30 * * * *", // Every 30 minutes
enabled: false,
enabled: true,
},
{
type: "movers_alpha",
schedule: "0 */45 * * *", // Every 45 minutes
schedule: "0 * * *", // Every 45 minutes
enabled: true,
},
],
debug: true,
runOnStartup: true,
debug: false,
runOnStartup: false,
},
platforms: {
telegram: {
enabled: false,
enabled: true,
token: process.env.TELEGRAM_BOT_TOKEN!,
},
api: {
Expand Down

0 comments on commit 101533d

Please sign in to comment.