Skip to content

Commit

Permalink
fix(Model): #1662 imported model does not use gpu
Browse files Browse the repository at this point in the history
Signed-off-by: James <[email protected]>
  • Loading branch information
James committed Jan 23, 2024
1 parent d852219 commit 60d825a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion extensions/model-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 72,10 @@ export default class JanModelExtension extends ModelExtension {
* @param network - Optional object to specify proxy/whether to ignore SSL certificates.
* @returns A Promise that resolves when the model is downloaded.
*/
async downloadModel(model: Model, network?: { ignoreSSL?: boolean; proxy?: string }): Promise<void> {
async downloadModel(
model: Model,
network?: { ignoreSSL?: boolean; proxy?: string }
): Promise<void> {
// create corresponding directory
const modelDirPath = await joinPath([JanModelExtension._homeDir, model.id])
if (!(await fs.existsSync(modelDirPath))) await fs.mkdirSync(modelDirPath)
Expand Down Expand Up @@ -294,6 297,11 @@ export default class JanModelExtension extends ModelExtension {
name: dirName,
created: Date.now(),
description: `${dirName} - user self import model`,
metadata: {
size: binaryFileSize,
author: 'User',
tags: [],
},
}

const modelFilePath = await joinPath([
Expand Down
2 changes: 1 addition & 1 deletion models/config/default-model.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 9,7 @@
"description": "User self import model",
"settings": {
"ctx_len": 4096,
"ngl": 0,
"ngl": 32,
"embedding": false,
"prompt_template": "{system_message}\n### Instruction: {prompt}\n### Response:"
},
Expand Down

0 comments on commit 60d825a

Please sign in to comment.