diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index e0766b3526..b20f72affa 100644 --- a/unsloth/models/_utils.py +++ b/unsloth/models/_utils.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2025.11.5" +__version__ = "2025.11.6" __all__ = [ "SUPPORTS_BFLOAT16", diff --git a/unsloth/models/rl.py b/unsloth/models/rl.py index 0d795aa282..e1b40e64ed 100644 --- a/unsloth/models/rl.py +++ b/unsloth/models/rl.py @@ -369,6 +369,7 @@ def _patch_trl_rl_trainers(trainer_file = "grpo_trainer"): ) return try: + RLConfig = eval(f"trl.trainer.{trainer_file}.{RLConfig_name}") except Exception as e: print( f"Unsloth: Could not load {RLConfig_name} from trl.trainer.{trainer_file}: {e}"