llm / __init__.py
lemms's picture
Upload __init__.py with huggingface_hub
4152f38 verified
raw
history blame contribute delete
434 Bytes
# 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"