We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d6013e commit 31bfccbCopy full SHA for 31bfccb
src/agent.py
@@ -192,7 +192,7 @@ def loop(self):
192
try:
193
# REPLENISH INPUTS
194
# 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:
+ if "timeline_tweets" not in self.state or self.state["timeline_tweets"] is None or len(self.state["timeline_tweets"]) == 0:
196
if (self.has_twitter_tasks):
197
logger.info("\n👀 READING TIMELINE")
198
self.state["timeline_tweets"] = self.connection_manager.perform_action(
@@ -208,7 +208,7 @@ def loop(self):
208
connection_name="echochambers",
209
action_name="get-room-info",
210
params={}
211
- )'''
+ )
212
213
# CHOOSE AN ACTION
214
# TODO: Add agentic action selection
0 commit comments