feat: add extended_kv_cache

This commit is contained in:
jialin
2025-10-14 20:09:43 +08:00
parent 620c113fae
commit 83403a1a1a
13 changed files with 277 additions and 142 deletions
+6 -1
View File
@@ -182,5 +182,10 @@ export default {
'models.table.users.all': 'All Users',
'models.table.users.selected': 'Selected Users',
'models.table.nouserFound': 'No users found',
'models.form.performance': 'Performance'
'models.form.performance': 'Performance',
'models.form.gpus.notfound': 'No GPUs found',
'models.form.extendedkvcache': 'Enable Extended KV Cache',
'models.form.chunkSize': 'Size Of Cache Chunks',
'models.form.maxCPUSize': 'Maximum CPU Cache Size (GiB)',
'models.form.remoteURL': 'Remote Storage URL'
};
+13 -2
View File
@@ -179,7 +179,12 @@ export default {
'models.table.users.all': 'All Users',
'models.table.users.selected': 'Selected Users',
'models.table.nouserFound': 'No users found',
'models.form.performance': 'Performance'
'models.form.performance': 'Performance',
'models.form.gpus.notfound': 'No GPUs found',
'models.form.extendedkvcache': 'Enable Extended KV Cache',
'models.form.chunkSize': 'Size Of Cache Chunks',
'models.form.maxCPUSize': 'Maximum CPU Cache Size (GiB)',
'models.form.remoteURL': 'Remote Storage URL'
};
// ========== To-Do: Translate Keys (Remove After Translation) ==========
@@ -202,5 +207,11 @@ export default {
// 17. 'models.table.users.all': 'All Users',
// 18. 'models.table.users.selected': 'Selected Users',
// 19. 'models.table.nouserFound': 'No users found',
// 20. 'models.form.performance': 'Performance'
// 20. 'models.form.performance': 'Performance',
// 21. 'models.form.gpus.notfound': 'No GPUs found',
// 22. 'models.form.extendedkvcache': 'Enable Extended KV Cache',
// 23. 'models.form.chunkSize': 'Size Of Cache Chunks',
// 24. 'models.form.maxCPUSize': 'Maximum CPU Cache Size (GiB)',
// 25. 'models.form.remoteURL': 'Remote Storage URL'
// ========== End of To-Do List ==========
+12 -2
View File
@@ -182,7 +182,12 @@ export default {
'models.table.users.all': 'All users',
'models.table.users.selected': 'Selected users',
'models.table.nouserFound': 'No users found',
'models.form.performance': 'Performance'
'models.form.performance': 'Performance',
'models.form.gpus.notfound': 'No GPUs found',
'models.form.extendedkvcache': 'Enable Extended KV Cache',
'models.form.chunkSize': 'Size Of Cache Chunks',
'models.form.maxCPUSize': 'Maximum CPU Cache Size (GiB)',
'models.form.remoteURL': 'Remote Storage URL'
};
// ========== To-Do: Translate Keys (Remove After Translation) ==========
@@ -197,5 +202,10 @@ export default {
// 9. 'models.table.users.all': 'All users',
// 10. 'models.table.users.selected': 'Selected users',
// 11. 'models.table.nouserFound': 'No users found',
// 12. 'models.form.performance': 'Performance'
// 12. 'models.form.performance': 'Performance',
// 13. 'models.form.gpus.notfound': 'No GPUs found',
// 14. 'models.form.extendedkvcache': 'Enable Extended KV Cache',
// 15. 'models.form.chunkSize': 'Size Of Cache Chunks',
// 16. 'models.form.maxCPUSize': 'Maximum CPU Cache Size (GiB)',
// 17. 'models.form.remoteURL': 'Remote Storage URL'
// ========== End of To-Do List ==========
+6 -1
View File
@@ -172,5 +172,10 @@ export default {
'models.table.users.all': '所有用户',
'models.table.users.selected': '已选用户',
'models.table.nouserFound': '未找到用户',
'models.form.performance': '性能'
'models.form.performance': '性能',
'models.form.gpus.notfound': '未找到 GPU',
'models.form.extendedkvcache': '启用扩展 KV 缓存',
'models.form.chunkSize': '缓存分块大小',
'models.form.maxCPUSize': 'CPU 缓存最大占用 (GiB)',
'models.form.remoteURL': '远程存储地址'
};