From 88cb4a0b23734697773ead2c5949595802282096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Tetsing?= Date: Tue, 20 Aug 2024 12:17:22 +0200 Subject: [PATCH] updated the llama model links --- libs/remix-ai-core/src/types/models.ts | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/libs/remix-ai-core/src/types/models.ts b/libs/remix-ai-core/src/types/models.ts index f1f41a126b..a9c930905e 100644 --- a/libs/remix-ai-core/src/types/models.ts +++ b/libs/remix-ai-core/src/types/models.ts @@ -5,7 +5,6 @@ import { IModel, IParams, RemoteBackendOPModel } from './types'; import { ModelType } from './constants'; - const DefaultModels = (): IModel[] => { const model1:IModel = { name: 'DeepSeek', @@ -61,7 +60,7 @@ const DefaultModels = (): IModel[] => { modelName: 'DeepSeek-Coder-V2-Lite-Base.Q2_K.gguf', downloadUrl: 'https://huggingface.co/QuantFactory/DeepSeek-Coder-V2-Lite-Base-GGUF/resolve/main/DeepSeek-Coder-V2-Lite-Base.Q2_K.gguf?download=true', modelType: ModelType.GENERAL, - modelReqs: { backend: 'llamacpp', minSysMemory: 2, GPURequired: false, MinGPUVRAM: 8 } + modelReqs: { backend: 'llamacpp', minSysMemory: 8, GPURequired: false, MinGPUVRAM: 8 } }; const model7: IModel = { @@ -69,9 +68,9 @@ const DefaultModels = (): IModel[] => { modelOP: RemoteBackendOPModel.CODELLAMA, task: 'text-generation', modelName: 'llama3_1_8B-q4_0.gguf', - downloadUrl: 'https://drive.google.com/file/d/1I376pl8uORDnUIjfNuqhExK4NCiH3F12/view?usp=share_link', + downloadUrl: 'https://drive.usercontent.google.com/download?id=1I376pl8uORDnUIjfNuqhExK4NCiH3F12&confirm=xxx', modelType: ModelType.GENERAL, - modelReqs: { backend: 'llamacpp', minSysMemory: 2, GPURequired: false, MinGPUVRAM: 8 } + modelReqs: { backend: 'llamacpp', minSysMemory: 8, GPURequired: false, MinGPUVRAM: 8 } }; const model8: IModel = { @@ -79,9 +78,9 @@ const DefaultModels = (): IModel[] => { modelOP: RemoteBackendOPModel.CODELLAMA, task: 'text-generation', modelName: 'llama3_1_8B-q4_0_instruct.gguf', - downloadUrl: 'https://drive.google.com/file/d/1P-MEH7cPxaR20v7W1qbOEPBzgiY2RDLx/view?usp=share_link', + downloadUrl: 'https://drive.usercontent.google.com/download?id=1P-MEH7cPxaR20v7W1qbOEPBzgiY2RDLx&confirm=xxx', modelType: ModelType.GENERAL, - modelReqs: { backend: 'llamacpp', minSysMemory: 2, GPURequired: false, MinGPUVRAM: 8 } + modelReqs: { backend: 'llamacpp', minSysMemory: 8, GPURequired: false, MinGPUVRAM: 8 } }; return [model1, model2, model3, model4, model5, model6, model7, model8];