LLM-GO / src /llm_go /data /__init__.py
LesterCerioli's picture
Building first version from Golang LLM
a58ece3
Raw
History Blame Contribute Delete
352 Bytes
from llm_go.data.collector import GoDataCollector
from llm_go.data.preprocessor import GoPreprocessor
from llm_go.data.dataset import GoDataset
from llm_go.data.go_best_practices import GoProjectTemplates, GoLayoutValidator
__all__ = [
"GoDataCollector",
"GoPreprocessor",
"GoDataset",
"GoProjectTemplates",
"GoLayoutValidator",
]