Skip to content

Commit 31bfccb

Browse files
committed
uncomment
1 parent 1d6013e commit 31bfccb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agent.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def loop(self):
192192
try:
193193
# REPLENISH INPUTS
194194
# TODO: Add more inputs to complexify agent behavior
195-
'''if "timeline_tweets" not in self.state or self.state["timeline_tweets"] is None or len(self.state["timeline_tweets"]) == 0:
195+
if "timeline_tweets" not in self.state or self.state["timeline_tweets"] is None or len(self.state["timeline_tweets"]) == 0:
196196
if (self.has_twitter_tasks):
197197
logger.info("\n👀 READING TIMELINE")
198198
self.state["timeline_tweets"] = self.connection_manager.perform_action(
@@ -208,7 +208,7 @@ def loop(self):
208208
connection_name="echochambers",
209209
action_name="get-room-info",
210210
params={}
211-
)'''
211+
)
212212

213213
# CHOOSE AN ACTION
214214
# TODO: Add agentic action selection

0 commit comments

Comments
 (0)