MCPcopy Create free account

hub / github.com/MarketSquare/robotframework-ai / functions

Functions147 in github.com/MarketSquare/robotframework-ai

Functionget_requirements
()
setup.py:20
Methodis_valid_file_paths
(self, file_paths: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:366
Methodis_valid_frequency_penalty
(self, frequency_penalty: float)
src/RobotFrameworkAI/modules/Module.py:161
Methodis_valid_id
(self, id: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:360
Methodis_valid_instructions
(self, instructions: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:354
Methodis_valid_max_tokens
(self, max_tokens: int)
src/RobotFrameworkAI/modules/Module.py:143
Methodis_valid_message
(self, message: str)
src/RobotFrameworkAI/modules/Module.py:173
Methodis_valid_name
(self, name: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:348
Methodis_valid_presence_penalty
(self, presence_penalty: float)
src/RobotFrameworkAI/modules/Module.py:167
Methodis_valid_temperature
(self, temperature: float)
src/RobotFrameworkAI/modules/Module.py:149
Methodis_valid_top_p
(self, top_p: float)
src/RobotFrameworkAI/modules/Module.py:155
Methodis_valid_type
(self, type: str)
src/RobotFrameworkAI/modules/real_test_data_generator/RealTestDataGenerator.py:216
Functionlog_test_name
(request)
utest/conftest.py:14
Functionmodule
()
utest/modules/test_module.py:5
Functionpytest_configure
(config)
utest/conftest.py:30
Functionpytest_runtest_setup
(item)
utest/conftest.py:18
Functionpytest_runtest_teardown
(item, nextitem)
utest/conftest.py:24
Functionpytest_unconfigure
(config)
utest/conftest.py:34
Methodsend_message
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/openai_tools/OpenAIAssistant.py:120
Methodsend_message
Sends a prompt to the active assistant and returns its response By either setting file_paths or supplying the argument in the method
src/RobotFrameworkAI/ai_interface/ai_model_tools/AssistantTool.py:129
Methodsend_prompt
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/GeminiService.py:21
Methodset_active_assistant
Sets the assistant with the specified Id as active This will also create a new thread The following arguments can be used (
src/RobotFrameworkAI/modules/assistant/Assistant.py:273
Methodset_active_assistant
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/openai_tools/OpenAIAssistant.py:94
Methodset_active_assistant
Sets the assistant with the specified Id as active This will also create a new thread.
src/RobotFrameworkAI/ai_interface/ai_model_tools/AssistantTool.py:178
Methodset_format
Setter for the Format argument. format: str: The format in which the test data will be given. If None, will return a 2-dimensional li
src/RobotFrameworkAI/modules/real_test_data_generator/RealTestDataGenerator.py:245
Methodset_frequency_penalty
Setter for the Frequency Penalty argument. frequency_penalty: float: Penalizes more frequent tokens, reducing the chance of them reap
src/RobotFrameworkAI/modules/Module.py:238
Methodset_id
Setter for the ID argument. id: str: The ID to be assigned. See the RobotFrameworkAI docs for more information about setters.
src/RobotFrameworkAI/modules/assistant/Assistant.py:375
Methodset_max_tokens
Setter for the Max Tokens argument. max_tokens: int: The token limit for a conversation. Both prompt and response tokens will count t
src/RobotFrameworkAI/modules/Module.py:203
Methodset_model
Setter for the Model argument. model: str: AI model specific. The model of the AI model to be used, e.g., "gpt-3.5-turbo" when using
src/RobotFrameworkAI/modules/Module.py:191
Methodset_presence_penalty
Setter for the Presence Penalty argument. presence_penalty: float: Similar to frequency_penalty but its scope is reduced to the immed
src/RobotFrameworkAI/modules/Module.py:250
Methodset_response_format
Setter for the Response Format argument. response_format: dict: Can be used to make the response compile to JSON. Set this to
src/RobotFrameworkAI/modules/Module.py:263
Methodset_system_message
Setter for the System Message argument. system_message: str: The instruction for the AI model, e.g., "You are a helpful assistant.".
src/RobotFrameworkAI/modules/chatbot/Chatbot.py:170
Methodset_temperature
Setter for the Temperature argument. temperature: float: This value determines the creativity of the AI model. Can be anything from 0
src/RobotFrameworkAI/modules/Module.py:214
Methodset_top_p
Setter for the Top P argument. top_p: float: Similar to temperature. Determines the selection of tokens before selecting one.
src/RobotFrameworkAI/modules/Module.py:225
Methodsetup_logging
(self, *args, **kwargs)
src/RobotFrameworkAI/__init__.py:29
Methodstart_keyword
(self, name, attributes)
atest/listeners/LoggerListener.py:17
Methodstart_suite
(self, name, attributes)
atest/listeners/LoggerListener.py:22
Methodstart_test
(self, name, attributes)
atest/listeners/LoggerListener.py:13
Functiontest_validate_input_arguments_given_invalid_frequency_penalty_raises_error
(module)
utest/modules/test_module.py:31
Functiontest_validate_input_arguments_given_invalid_max_tokens_raises_error
(module)
utest/modules/test_module.py:13
Functiontest_validate_input_arguments_given_invalid_presence_penalty_raises_error
(module)
utest/modules/test_module.py:37
Functiontest_validate_input_arguments_given_invalid_temperature_raises_error
(module)
utest/modules/test_module.py:19
Functiontest_validate_input_arguments_given_invalid_top_p_raises_error
(module)
utest/modules/test_module.py:25
Functiontest_validate_input_arguments_given_valid_input_is_true
(module)
utest/modules/test_module.py:9
Methodupdate_assistant
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/openai_tools/OpenAIAssistant.py:42
Methodupdate_assistant
Updates the parameters of the active assistant Accepts the same arguments as the create_assistant method.
src/RobotFrameworkAI/ai_interface/ai_model_tools/AssistantTool.py:186
Methodupload_file
Uploads a file to the server of the AI model and returns it id
src/RobotFrameworkAI/ai_interface/ai_model_tools/AssistantTool.py:201
← previous101–147 of 147, ranked by callers