# Core source package for OpenLLM | |
# This file makes the core/src directory a Python package | |
""" | |
OpenLLM Core Source Package | |
This package contains the core implementation of the OpenLLM language model, | |
including model architecture, training, inference, and data processing components. | |
Author: Louis Chua Bean Chong | |
License: GPLv3 | |
""" | |
__version__ = "1.0.0" | |
__author__ = "Louis Chua Bean Chong" | |
__license__ = "GPLv3" | |