React to a tweet
(self, session_id: str, platform: str, tweet_id: str = None, event: str = None, task: str = None)
| 241 | ) |
| 242 | |
| 243 | def react(self, session_id: str, platform: str, tweet_id: str = None, event: str = None, task: str = None): |
| 244 | """ |
| 245 | React to a tweet |
| 246 | """ |
| 247 | return self.game_sdk.react( |
| 248 | session_id=session_id, |
| 249 | platform=platform, |
| 250 | event=event, |
| 251 | task=task, |
| 252 | tweet_id=tweet_id, |
| 253 | goal=self.goal, |
| 254 | description=self.description, |
| 255 | world_info=self.world_info, |
| 256 | functions=self.enabled_functions, |
| 257 | custom_functions=self.custom_functions |
| 258 | ) |
| 259 | |
| 260 | def deploy_twitter(self): |
| 261 | """ |
no outgoing calls
no test coverage detected