You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the initialization of the library, all modules are added manually.
Instead it should be done automatically, so new module do not have to be added here every time.
This can be done similarly to how it has been done in the AI_Interface and the RealTestDataGenerator.
As every module inherits from Module, import all its subclasses and add them to the list of libraries indicated by the arrow.
def __init__(self) -> None:
"""
Initializes the RobotFrameworkAI library with necessary components like RealTestDataGenerator,
Chatbot, and Assistant, which are integrated to provide AI capabilities to Robot Framework.
"""
libraries = [RealTestDataGenerator(), Chatbot(), Assistant()] <---
DynamicCore.__init__(self, libraries)
The text was updated successfully, but these errors were encountered:
In the initialization of the library, all modules are added manually.
Instead it should be done automatically, so new module do not have to be added here every time.
This can be done similarly to how it has been done in the
AI_Interface
and theRealTestDataGenerator
.As every module inherits from
Module
, import all its subclasses and add them to the list of libraries indicated by the arrow.The text was updated successfully, but these errors were encountered: