Skip to content

Commit

Permalink
Fix the naming of the action in planning module
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Dec 23, 2024
1 parent 720879c commit aee9ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ def __init__(self):
#: Initialize Planning Module with persistent Q-table
self.planning_module = PlanningModule(
actions=[
"idle", # Do nothing (resting state)
"analyze_signal", # Check if there are new signals
"research_news", # Analyze news and post to Twitter
"idle", # Do nothing (resting state)
],
q_table_path=settings.PERSISTENT_Q_TABLE_PATH, # Persistent Q-table file
)
Expand Down

0 comments on commit aee9ec2

Please sign in to comment.