refactor(settings): 移除无效的配置项

- 移除 maxTokens/temperature 滑块(后端从不使用)
- 移除 allowedPaths/deniedPaths 显示(权限通过 handler 处理)
- Settings 面板只保留 workdir 和 Summary Model 配置
This commit is contained in:
2025-12-14 21:37:58 +08:00
parent 9e011476c8
commit e97daaa0eb
3 changed files with 1 additions and 146 deletions
-5
View File
@@ -83,12 +83,7 @@ export interface FileTreeResponse {
}
export interface ServerConfig {
model: string;
maxTokens: number;
temperature: number;
workdir: string;
allowedPaths: string[];
deniedPaths: string[];
}
// ============ Command 相关 ============