Implement Qwen text core

This commit is contained in:
Georg Bauer
2026-09-03 20:31:53 +02:00
parent 3773cfda2e
commit c414640050
9 changed files with 2766 additions and 52 deletions
+2
View File
@@ -320,6 +320,7 @@ impl Executor {
match self {
Self::DeepSeek(executor) => executor.save_checkpoint(path, tag, progress),
Self::Glm(executor) => executor.save_checkpoint(path, tag, progress),
Self::Qwen(executor) => executor.save_checkpoint(path, tag, progress),
}
}
@@ -331,6 +332,7 @@ impl Executor {
match self {
Self::DeepSeek(executor) => executor.load_checkpoint(path, progress),
Self::Glm(executor) => executor.load_checkpoint(path, progress),
Self::Qwen(executor) => executor.load_checkpoint(path, progress),
}
}
}