MCPcopy Create free account
hub / github.com/MarketSquare/robotframework-ai / set_message

Method set_message

src/RobotFrameworkAI/modules/Module.py:275–282  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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
285class ValidationMethodNotFoundError(Exception):

Callers 2

chatbotFunction · 0.80
assistantFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected