From cd0bb54f711d4a15ae0fab922ee61341ee254dd6 Mon Sep 17 00:00:00 2001 From: Vali98 Date: Mon, 4 Nov 2024 15:38:07 +0800 Subject: [PATCH] fix: disabled tfs_z for local due to a crash described in #97 --- app/constants/APIState/LocalAPI.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constants/APIState/LocalAPI.ts b/app/constants/APIState/LocalAPI.ts index 8ebc9bf..b692af6 100644 --- a/app/constants/APIState/LocalAPI.ts +++ b/app/constants/APIState/LocalAPI.ts @@ -15,7 +15,7 @@ class LocalAPI extends APIBase { { externalName: 'temperature', samplerID: SamplerID.TEMPERATURE }, { externalName: 'top_p', samplerID: SamplerID.TOP_P }, { externalName: 'top_k', samplerID: SamplerID.TOP_K }, - { externalName: 'tfs_z', samplerID: SamplerID.TAIL_FREE_SAMPLING }, + // { externalName: 'tfs_z', samplerID: SamplerID.TAIL_FREE_SAMPLING }, { externalName: 'min_p', samplerID: SamplerID.MIN_P }, { externalName: 'typical_p', samplerID: SamplerID.TYPICAL }, { externalName: 'mirostat', samplerID: SamplerID.MIROSTAT_MODE },