From b0f5b19438adf208a389c4e349d5f4f9dad0e1be Mon Sep 17 00:00:00 2001 From: francis2tm Date: Tue, 30 Jan 2024 23:21:26 +0000 Subject: [PATCH] chore: updated default models --- crates/edgen_core/src/settings.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/edgen_core/src/settings.rs b/crates/edgen_core/src/settings.rs index 2f860b4..d2c3b02 100644 --- a/crates/edgen_core/src/settings.rs +++ b/crates/edgen_core/src/settings.rs @@ -203,10 +203,10 @@ impl Default for SettingsParams { Self { threads: threads as u32, default_uri: "http://127.0.0.1:33322".to_string(), - chat_completions_model_name: "zephyr-7b-beta.Q4_K_M.gguf".to_string(), - chat_completions_model_repo: "TheBloke/zephyr-7B-beta-GGUF".to_string(), - audio_transcriptions_model_name: "ggml-medium-32-2.en.bin".to_string(), - audio_transcriptions_model_repo: "distil-whisper/distil-medium.en".to_string(), + chat_completions_model_name: "neural-chat-7b-v3-3.Q4_K_M.gguf".to_string(), + chat_completions_model_repo: "TheBloke/neural-chat-7B-v3-3-GGUF".to_string(), + audio_transcriptions_model_name: "ggml-distil-small.en.bin".to_string(), + audio_transcriptions_model_repo: "distil-whisper/distil-small.en".to_string(), chat_completions_models_dir: chat_completions_str, audio_transcriptions_models_dir: audio_transcriptions_str, }