Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MarketSquare/robotframework-ai
/ functions
Functions
147 in github.com/MarketSquare/robotframework-ai
⨍
Functions
147
◇
Types & classes
31
Function
get_requirements
()
setup.py:20
Method
is_valid_file_paths
(self, file_paths: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:366
Method
is_valid_frequency_penalty
(self, frequency_penalty: float)
src/RobotFrameworkAI/modules/Module.py:161
Method
is_valid_id
(self, id: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:360
Method
is_valid_instructions
(self, instructions: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:354
Method
is_valid_max_tokens
(self, max_tokens: int)
src/RobotFrameworkAI/modules/Module.py:143
Method
is_valid_message
(self, message: str)
src/RobotFrameworkAI/modules/Module.py:173
Method
is_valid_name
(self, name: str)
src/RobotFrameworkAI/modules/assistant/Assistant.py:348
Method
is_valid_presence_penalty
(self, presence_penalty: float)
src/RobotFrameworkAI/modules/Module.py:167
Method
is_valid_temperature
(self, temperature: float)
src/RobotFrameworkAI/modules/Module.py:149
Method
is_valid_top_p
(self, top_p: float)
src/RobotFrameworkAI/modules/Module.py:155
Method
is_valid_type
(self, type: str)
src/RobotFrameworkAI/modules/real_test_data_generator/RealTestDataGenerator.py:216
Function
log_test_name
(request)
utest/conftest.py:14
Function
module
()
utest/modules/test_module.py:5
Function
pytest_configure
(config)
utest/conftest.py:30
Function
pytest_runtest_setup
(item)
utest/conftest.py:18
Function
pytest_runtest_teardown
(item, nextitem)
utest/conftest.py:24
Function
pytest_unconfigure
(config)
utest/conftest.py:34
Method
send_message
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/openai_tools/OpenAIAssistant.py:120
Method
send_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
Method
send_prompt
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/GeminiService.py:21
Method
set_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
Method
set_active_assistant
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/openai_tools/OpenAIAssistant.py:94
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
set_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
Method
setup_logging
(self, *args, **kwargs)
src/RobotFrameworkAI/__init__.py:29
Method
start_keyword
(self, name, attributes)
atest/listeners/LoggerListener.py:17
Method
start_suite
(self, name, attributes)
atest/listeners/LoggerListener.py:22
Method
start_test
(self, name, attributes)
atest/listeners/LoggerListener.py:13
Function
test_validate_input_arguments_given_invalid_frequency_penalty_raises_error
(module)
utest/modules/test_module.py:31
Function
test_validate_input_arguments_given_invalid_max_tokens_raises_error
(module)
utest/modules/test_module.py:13
Function
test_validate_input_arguments_given_invalid_presence_penalty_raises_error
(module)
utest/modules/test_module.py:37
Function
test_validate_input_arguments_given_invalid_temperature_raises_error
(module)
utest/modules/test_module.py:19
Function
test_validate_input_arguments_given_invalid_top_p_raises_error
(module)
utest/modules/test_module.py:25
Function
test_validate_input_arguments_given_valid_input_is_true
(module)
utest/modules/test_module.py:9
Method
update_assistant
(self, prompt)
src/RobotFrameworkAI/ai_interface/ai_model_services/openai_tools/OpenAIAssistant.py:42
Method
update_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
Method
upload_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
← previous
101–147 of 147, ranked by callers