feat(box): 添加命令行文件解析功能并优化主题和语言管理- 新增 ArgsParser 类用于解析命令行参数中的文件路径

- 添加 OpenFileEvents 事件类用于处理打开文件请求
- 更新 AxisInnovatorsBox 类,支持命令行文件解析
- 重构 LanguageManager 类,优化语言合并和加载逻辑
- 更新 MainWindow 类,改进界面样式和滚动条UI
- 修改 PluginDescriptor 类,增加注册名字段
This commit is contained in:
2025-02-21 20:55:10 +08:00
parent 97b071ece8
commit 701dfcfb47
20 changed files with 614 additions and 436 deletions

View File

@@ -10,7 +10,7 @@ import org.apache.logging.log4j.Logger;
* @author tzdwindows 7
*/
public class LM {
public static boolean CUDA = true;
public static boolean CUDA = false;
public final static String DEEP_SEEK = FolderCreator.getModelFolder() + "\\DeepSeek-R1-Distill-Qwen-1.5B-Q8_0.gguf";
private static final Logger logger = LogManager.getLogger(LM.class);