Source code for eegunity.modules.llm_booster.eeg_llm_booster
from eegunity.modules.llm_booster.eeg_llm_des_parser import llm_description_file_parser
from eegunity.modules.llm_booster.eeg_llm_file_parser import llm_boost_parser
from eegunity._share_attributes import _UDatasetSharedAttributes
[docs]
class EEGLLMBooster(_UDatasetSharedAttributes):
def __init__(self, main_instance):
super().__init__()
self._shared_attr = main_instance._shared_attr
self.llm_description_file_parser = llm_description_file_parser
self.llm_boost_parser = llm_boost_parser