NexusCoder / nexus /integrations /__init__.py
AdminReal's picture
Import NexusCoder from github.com/mhieuhonda/NexusCoder
eca5751 verified
Raw
History Blame Contribute Delete
1.07 kB
"""
Nexus Coder Integrations v0.3
=============================
Adapters / ported utilities from open-source ML frameworks.
These adapters are inspired by (and copy best practices from) the following
open-source projects. All credit for the original algorithms goes to their
respective authors. The code here is rewritten to integrate cleanly into
the Nexus Coder architecture; it is NOT a vendored copy.
Attribution:
- litgpt (Lightning AI, Apache 2.0) β€” RoPE scaling, FusedLinear
- LlamaFactory (hiyouga, Apache 2.0) β€” dataset format converters
- axolotl (axolotl-ai-cloud, Apache 2.0) β€” training config schema
- OpenHands (OpenHands, MIT) β€” agent loop patterns
- omp-gym (dylantirandaz, MIT) β€” OpenMP benchmark hooks
Each adapter module exposes a small public API. They are OPTIONAL β€” Nexus Coder
does not require these frameworks to be installed.
"""
from __future__ import annotations
__all__ = ["litgpt", "llamafactory", "axolotl", "openhands", "omp_gym"]