Setter for the Message argument. message: str: The message you want to send to the AI model, e.g., "What is the weather today?". See the RobotFrameworkAI docs for more information about setters.
(self, message: str)
| 273 | |
| 274 | @keyword |
| 275 | def set_message(self, message: str): |
| 276 | """ |
| 277 | Setter for the Message argument. |
| 278 | message: str: The message you want to send to the AI model, e.g., "What is the weather today?". |
| 279 | See the RobotFrameworkAI docs for more information about setters. |
| 280 | """ |
| 281 | logger.debug(f"Calling keyword: Set Message. Changing Message from `{self.message}` to `{message}`") |
| 282 | self.message = message |
| 283 | |
| 284 | |
| 285 | class ValidationMethodNotFoundError(Exception): |