* fix: mismatch between model json and path * chore: revert preserve model settings * test: add tests
This commit is contained in:
parent
c3cb192486
commit
8e603bd5db
1
.gitignore
vendored
1
.gitignore
vendored
@ -45,3 +45,4 @@ core/test_results.html
|
|||||||
coverage
|
coverage
|
||||||
.yarn
|
.yarn
|
||||||
.yarnrc
|
.yarnrc
|
||||||
|
*.tsbuildinfo
|
||||||
|
|||||||
@ -1,98 +1,109 @@
|
|||||||
import { openExternalUrl } from './core';
|
import { openExternalUrl } from './core'
|
||||||
import { joinPath } from './core';
|
import { joinPath } from './core'
|
||||||
import { openFileExplorer } from './core';
|
import { openFileExplorer } from './core'
|
||||||
import { getJanDataFolderPath } from './core';
|
import { getJanDataFolderPath } from './core'
|
||||||
import { abortDownload } from './core';
|
import { abortDownload } from './core'
|
||||||
import { getFileSize } from './core';
|
import { getFileSize } from './core'
|
||||||
import { executeOnMain } from './core';
|
import { executeOnMain } from './core'
|
||||||
|
|
||||||
|
describe('test core apis', () => {
|
||||||
it('should open external url', async () => {
|
it('should open external url', async () => {
|
||||||
const url = 'http://example.com';
|
const url = 'http://example.com'
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
openExternalUrl: jest.fn().mockResolvedValue('opened')
|
openExternalUrl: jest.fn().mockResolvedValue('opened'),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await openExternalUrl(url)
|
||||||
const result = await openExternalUrl(url);
|
expect(globalThis.core.api.openExternalUrl).toHaveBeenCalledWith(url)
|
||||||
expect(globalThis.core.api.openExternalUrl).toHaveBeenCalledWith(url);
|
expect(result).toBe('opened')
|
||||||
expect(result).toBe('opened');
|
})
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should join paths', async () => {
|
it('should join paths', async () => {
|
||||||
const paths = ['/path/one', '/path/two'];
|
const paths = ['/path/one', '/path/two']
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
joinPath: jest.fn().mockResolvedValue('/path/one/path/two')
|
joinPath: jest.fn().mockResolvedValue('/path/one/path/two'),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await joinPath(paths)
|
||||||
const result = await joinPath(paths);
|
expect(globalThis.core.api.joinPath).toHaveBeenCalledWith(paths)
|
||||||
expect(globalThis.core.api.joinPath).toHaveBeenCalledWith(paths);
|
expect(result).toBe('/path/one/path/two')
|
||||||
expect(result).toBe('/path/one/path/two');
|
})
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should open file explorer', async () => {
|
it('should open file explorer', async () => {
|
||||||
const path = '/path/to/open';
|
const path = '/path/to/open'
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
openFileExplorer: jest.fn().mockResolvedValue('opened')
|
openFileExplorer: jest.fn().mockResolvedValue('opened'),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await openFileExplorer(path)
|
||||||
const result = await openFileExplorer(path);
|
expect(globalThis.core.api.openFileExplorer).toHaveBeenCalledWith(path)
|
||||||
expect(globalThis.core.api.openFileExplorer).toHaveBeenCalledWith(path);
|
expect(result).toBe('opened')
|
||||||
expect(result).toBe('opened');
|
})
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should get jan data folder path', async () => {
|
it('should get jan data folder path', async () => {
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
getJanDataFolderPath: jest.fn().mockResolvedValue('/path/to/jan/data')
|
getJanDataFolderPath: jest.fn().mockResolvedValue('/path/to/jan/data'),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await getJanDataFolderPath()
|
||||||
const result = await getJanDataFolderPath();
|
expect(globalThis.core.api.getJanDataFolderPath).toHaveBeenCalled()
|
||||||
expect(globalThis.core.api.getJanDataFolderPath).toHaveBeenCalled();
|
expect(result).toBe('/path/to/jan/data')
|
||||||
expect(result).toBe('/path/to/jan/data');
|
})
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should abort download', async () => {
|
it('should abort download', async () => {
|
||||||
const fileName = 'testFile';
|
const fileName = 'testFile'
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
abortDownload: jest.fn().mockResolvedValue('aborted')
|
abortDownload: jest.fn().mockResolvedValue('aborted'),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await abortDownload(fileName)
|
||||||
const result = await abortDownload(fileName);
|
expect(globalThis.core.api.abortDownload).toHaveBeenCalledWith(fileName)
|
||||||
expect(globalThis.core.api.abortDownload).toHaveBeenCalledWith(fileName);
|
expect(result).toBe('aborted')
|
||||||
expect(result).toBe('aborted');
|
})
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should get file size', async () => {
|
it('should get file size', async () => {
|
||||||
const url = 'http://example.com/file';
|
const url = 'http://example.com/file'
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
getFileSize: jest.fn().mockResolvedValue(1024)
|
getFileSize: jest.fn().mockResolvedValue(1024),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await getFileSize(url)
|
||||||
const result = await getFileSize(url);
|
expect(globalThis.core.api.getFileSize).toHaveBeenCalledWith(url)
|
||||||
expect(globalThis.core.api.getFileSize).toHaveBeenCalledWith(url);
|
expect(result).toBe(1024)
|
||||||
expect(result).toBe(1024);
|
})
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it('should execute function on main process', async () => {
|
it('should execute function on main process', async () => {
|
||||||
const extension = 'testExtension';
|
const extension = 'testExtension'
|
||||||
const method = 'testMethod';
|
const method = 'testMethod'
|
||||||
const args = ['arg1', 'arg2'];
|
const args = ['arg1', 'arg2']
|
||||||
globalThis.core = {
|
globalThis.core = {
|
||||||
api: {
|
api: {
|
||||||
invokeExtensionFunc: jest.fn().mockResolvedValue('result')
|
invokeExtensionFunc: jest.fn().mockResolvedValue('result'),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
};
|
const result = await executeOnMain(extension, method, ...args)
|
||||||
const result = await executeOnMain(extension, method, ...args);
|
expect(globalThis.core.api.invokeExtensionFunc).toHaveBeenCalledWith(extension, method, ...args)
|
||||||
expect(globalThis.core.api.invokeExtensionFunc).toHaveBeenCalledWith(extension, method, ...args);
|
expect(result).toBe('result')
|
||||||
expect(result).toBe('result');
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
|
describe('dirName - just a pass thru api', () => {
|
||||||
|
it('should retrieve the directory name from a file path', async () => {
|
||||||
|
const mockDirName = jest.fn()
|
||||||
|
globalThis.core = {
|
||||||
|
api: {
|
||||||
|
dirName: mockDirName.mockResolvedValue('/path/to'),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
// Normal file path with extension
|
||||||
|
const path = '/path/to/file.txt'
|
||||||
|
await globalThis.core.api.dirName(path)
|
||||||
|
expect(mockDirName).toHaveBeenCalledWith(path)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|||||||
@ -68,6 +68,13 @@ const openFileExplorer: (path: string) => Promise<any> = (path) =>
|
|||||||
const joinPath: (paths: string[]) => Promise<string> = (paths) =>
|
const joinPath: (paths: string[]) => Promise<string> = (paths) =>
|
||||||
globalThis.core.api?.joinPath(paths)
|
globalThis.core.api?.joinPath(paths)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get dirname of a file path.
|
||||||
|
* @param path - The file path to retrieve dirname.
|
||||||
|
* @returns {Promise<string>} A promise that resolves the dirname.
|
||||||
|
*/
|
||||||
|
const dirName: (path: string) => Promise<string> = (path) => globalThis.core.api?.dirName(path)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve the basename from an url.
|
* Retrieve the basename from an url.
|
||||||
* @param path - The path to retrieve.
|
* @param path - The path to retrieve.
|
||||||
@ -161,5 +168,6 @@ export {
|
|||||||
systemInformation,
|
systemInformation,
|
||||||
showToast,
|
showToast,
|
||||||
getFileSize,
|
getFileSize,
|
||||||
|
dirName,
|
||||||
FileStat,
|
FileStat,
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import { getJanDataFolderPath, joinPath } from '../../core'
|
|||||||
import { events } from '../../events'
|
import { events } from '../../events'
|
||||||
import { BaseExtension } from '../../extension'
|
import { BaseExtension } from '../../extension'
|
||||||
import { fs } from '../../fs'
|
import { fs } from '../../fs'
|
||||||
import { MessageRequest, Model, ModelEvent } from '../../../types'
|
import { MessageRequest, Model, ModelEvent, ModelFile } from '../../../types'
|
||||||
import { EngineManager } from './EngineManager'
|
import { EngineManager } from './EngineManager'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -21,7 +21,7 @@ export abstract class AIEngine extends BaseExtension {
|
|||||||
override onLoad() {
|
override onLoad() {
|
||||||
this.registerEngine()
|
this.registerEngine()
|
||||||
|
|
||||||
events.on(ModelEvent.OnModelInit, (model: Model) => this.loadModel(model))
|
events.on(ModelEvent.OnModelInit, (model: ModelFile) => this.loadModel(model))
|
||||||
events.on(ModelEvent.OnModelStop, (model: Model) => this.unloadModel(model))
|
events.on(ModelEvent.OnModelStop, (model: Model) => this.unloadModel(model))
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ export abstract class AIEngine extends BaseExtension {
|
|||||||
/**
|
/**
|
||||||
* Loads the model.
|
* Loads the model.
|
||||||
*/
|
*/
|
||||||
async loadModel(model: Model): Promise<any> {
|
async loadModel(model: ModelFile): Promise<any> {
|
||||||
if (model.engine.toString() !== this.provider) return Promise.resolve()
|
if (model.engine.toString() !== this.provider) return Promise.resolve()
|
||||||
events.emit(ModelEvent.OnModelReady, model)
|
events.emit(ModelEvent.OnModelReady, model)
|
||||||
return Promise.resolve()
|
return Promise.resolve()
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { executeOnMain, getJanDataFolderPath, joinPath, systemInformation } from '../../core'
|
import { executeOnMain, systemInformation, dirName } from '../../core'
|
||||||
import { events } from '../../events'
|
import { events } from '../../events'
|
||||||
import { Model, ModelEvent } from '../../../types'
|
import { Model, ModelEvent, ModelFile } from '../../../types'
|
||||||
import { OAIEngine } from './OAIEngine'
|
import { OAIEngine } from './OAIEngine'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -14,22 +14,24 @@ export abstract class LocalOAIEngine extends OAIEngine {
|
|||||||
unloadModelFunctionName: string = 'unloadModel'
|
unloadModelFunctionName: string = 'unloadModel'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On extension load, subscribe to events.
|
* This class represents a base for local inference providers in the OpenAI architecture.
|
||||||
|
* It extends the OAIEngine class and provides the implementation of loading and unloading models locally.
|
||||||
|
* The loadModel function subscribes to the ModelEvent.OnModelInit event, loading models when initiated.
|
||||||
|
* The unloadModel function subscribes to the ModelEvent.OnModelStop event, unloading models when stopped.
|
||||||
*/
|
*/
|
||||||
override onLoad() {
|
override onLoad() {
|
||||||
super.onLoad()
|
super.onLoad()
|
||||||
// These events are applicable to local inference providers
|
// These events are applicable to local inference providers
|
||||||
events.on(ModelEvent.OnModelInit, (model: Model) => this.loadModel(model))
|
events.on(ModelEvent.OnModelInit, (model: ModelFile) => this.loadModel(model))
|
||||||
events.on(ModelEvent.OnModelStop, (model: Model) => this.unloadModel(model))
|
events.on(ModelEvent.OnModelStop, (model: Model) => this.unloadModel(model))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load the model.
|
* Load the model.
|
||||||
*/
|
*/
|
||||||
override async loadModel(model: Model): Promise<void> {
|
override async loadModel(model: ModelFile): Promise<void> {
|
||||||
if (model.engine.toString() !== this.provider) return
|
if (model.engine.toString() !== this.provider) return
|
||||||
const modelFolderName = 'models'
|
const modelFolder = await dirName(model.file_path)
|
||||||
const modelFolder = await joinPath([await getJanDataFolderPath(), modelFolderName, model.id])
|
|
||||||
const systemInfo = await systemInformation()
|
const systemInfo = await systemInformation()
|
||||||
const res = await executeOnMain(
|
const res = await executeOnMain(
|
||||||
this.nodeModule,
|
this.nodeModule,
|
||||||
|
|||||||
@ -4,6 +4,7 @@ import {
|
|||||||
HuggingFaceRepoData,
|
HuggingFaceRepoData,
|
||||||
ImportingModel,
|
ImportingModel,
|
||||||
Model,
|
Model,
|
||||||
|
ModelFile,
|
||||||
ModelInterface,
|
ModelInterface,
|
||||||
OptionType,
|
OptionType,
|
||||||
} from '../../types'
|
} from '../../types'
|
||||||
@ -25,12 +26,11 @@ export abstract class ModelExtension extends BaseExtension implements ModelInter
|
|||||||
network?: { proxy: string; ignoreSSL?: boolean }
|
network?: { proxy: string; ignoreSSL?: boolean }
|
||||||
): Promise<void>
|
): Promise<void>
|
||||||
abstract cancelModelDownload(modelId: string): Promise<void>
|
abstract cancelModelDownload(modelId: string): Promise<void>
|
||||||
abstract deleteModel(modelId: string): Promise<void>
|
abstract deleteModel(model: ModelFile): Promise<void>
|
||||||
abstract saveModel(model: Model): Promise<void>
|
abstract getDownloadedModels(): Promise<ModelFile[]>
|
||||||
abstract getDownloadedModels(): Promise<Model[]>
|
abstract getConfiguredModels(): Promise<ModelFile[]>
|
||||||
abstract getConfiguredModels(): Promise<Model[]>
|
|
||||||
abstract importModels(models: ImportingModel[], optionType: OptionType): Promise<void>
|
abstract importModels(models: ImportingModel[], optionType: OptionType): Promise<void>
|
||||||
abstract updateModelInfo(modelInfo: Partial<Model>): Promise<Model>
|
abstract updateModelInfo(modelInfo: Partial<ModelFile>): Promise<ModelFile>
|
||||||
abstract fetchHuggingFaceRepoData(repoId: string): Promise<HuggingFaceRepoData>
|
abstract fetchHuggingFaceRepoData(repoId: string): Promise<HuggingFaceRepoData>
|
||||||
abstract getDefaultModel(): Promise<Model>
|
abstract getDefaultModel(): Promise<Model>
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,40 +1,57 @@
|
|||||||
import { App } from './app';
|
jest.mock('../../helper', () => ({
|
||||||
|
...jest.requireActual('../../helper'),
|
||||||
|
getJanDataFolderPath: () => './app',
|
||||||
|
}))
|
||||||
|
import { dirname } from 'path'
|
||||||
|
import { App } from './app'
|
||||||
|
|
||||||
it('should call stopServer', () => {
|
it('should call stopServer', () => {
|
||||||
const app = new App();
|
const app = new App()
|
||||||
const stopServerMock = jest.fn().mockResolvedValue('Server stopped');
|
const stopServerMock = jest.fn().mockResolvedValue('Server stopped')
|
||||||
jest.mock('@janhq/server', () => ({
|
jest.mock('@janhq/server', () => ({
|
||||||
stopServer: stopServerMock
|
stopServer: stopServerMock,
|
||||||
}));
|
}))
|
||||||
const result = app.stopServer();
|
app.stopServer()
|
||||||
expect(stopServerMock).toHaveBeenCalled();
|
expect(stopServerMock).toHaveBeenCalled()
|
||||||
});
|
})
|
||||||
|
|
||||||
it('should correctly retrieve basename', () => {
|
it('should correctly retrieve basename', () => {
|
||||||
const app = new App();
|
const app = new App()
|
||||||
const result = app.baseName('/path/to/file.txt');
|
const result = app.baseName('/path/to/file.txt')
|
||||||
expect(result).toBe('file.txt');
|
expect(result).toBe('file.txt')
|
||||||
});
|
})
|
||||||
|
|
||||||
it('should correctly identify subdirectories', () => {
|
it('should correctly identify subdirectories', () => {
|
||||||
const app = new App();
|
const app = new App()
|
||||||
const basePath = process.platform === 'win32' ? 'C:\\path\\to' : '/path/to';
|
const basePath = process.platform === 'win32' ? 'C:\\path\\to' : '/path/to'
|
||||||
const subPath = process.platform === 'win32' ? 'C:\\path\\to\\subdir' : '/path/to/subdir';
|
const subPath = process.platform === 'win32' ? 'C:\\path\\to\\subdir' : '/path/to/subdir'
|
||||||
const result = app.isSubdirectory(basePath, subPath);
|
const result = app.isSubdirectory(basePath, subPath)
|
||||||
expect(result).toBe(true);
|
expect(result).toBe(true)
|
||||||
});
|
})
|
||||||
|
|
||||||
it('should correctly join multiple paths', () => {
|
it('should correctly join multiple paths', () => {
|
||||||
const app = new App();
|
const app = new App()
|
||||||
const result = app.joinPath(['path', 'to', 'file']);
|
const result = app.joinPath(['path', 'to', 'file'])
|
||||||
const expectedPath = process.platform === 'win32' ? 'path\\to\\file' : 'path/to/file';
|
const expectedPath = process.platform === 'win32' ? 'path\\to\\file' : 'path/to/file'
|
||||||
expect(result).toBe(expectedPath);
|
expect(result).toBe(expectedPath)
|
||||||
});
|
})
|
||||||
|
|
||||||
it('should call correct function with provided arguments using process method', () => {
|
it('should call correct function with provided arguments using process method', () => {
|
||||||
const app = new App();
|
const app = new App()
|
||||||
const mockFunc = jest.fn();
|
const mockFunc = jest.fn()
|
||||||
app.joinPath = mockFunc;
|
app.joinPath = mockFunc
|
||||||
app.process('joinPath', ['path1', 'path2']);
|
app.process('joinPath', ['path1', 'path2'])
|
||||||
expect(mockFunc).toHaveBeenCalledWith(['path1', 'path2']);
|
expect(mockFunc).toHaveBeenCalledWith(['path1', 'path2'])
|
||||||
});
|
})
|
||||||
|
|
||||||
|
it('should retrieve the directory name from a file path (Unix/Windows)', async () => {
|
||||||
|
const app = new App()
|
||||||
|
const path = 'C:/Users/John Doe/Desktop/file.txt'
|
||||||
|
expect(await app.dirName(path)).toBe('C:/Users/John Doe/Desktop')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('should retrieve the directory name when using file protocol', async () => {
|
||||||
|
const app = new App()
|
||||||
|
const path = 'file:/models/file.txt'
|
||||||
|
expect(await app.dirName(path)).toBe(process.platform === 'win32' ? 'app\\models' : 'app/models')
|
||||||
|
})
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { basename, isAbsolute, join, relative } from 'path'
|
import { basename, dirname, isAbsolute, join, relative } from 'path'
|
||||||
|
|
||||||
import { Processor } from './Processor'
|
import { Processor } from './Processor'
|
||||||
import {
|
import {
|
||||||
@ -6,6 +6,8 @@ import {
|
|||||||
appResourcePath,
|
appResourcePath,
|
||||||
getAppConfigurations as appConfiguration,
|
getAppConfigurations as appConfiguration,
|
||||||
updateAppConfiguration,
|
updateAppConfiguration,
|
||||||
|
normalizeFilePath,
|
||||||
|
getJanDataFolderPath,
|
||||||
} from '../../helper'
|
} from '../../helper'
|
||||||
|
|
||||||
export class App implements Processor {
|
export class App implements Processor {
|
||||||
@ -28,6 +30,18 @@ export class App implements Processor {
|
|||||||
return join(...args)
|
return join(...args)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get dirname of a file path.
|
||||||
|
* @param path - The file path to retrieve dirname.
|
||||||
|
*/
|
||||||
|
dirName(path: string) {
|
||||||
|
const arg =
|
||||||
|
path.startsWith(`file:/`) || path.startsWith(`file:\\`)
|
||||||
|
? join(getJanDataFolderPath(), normalizeFilePath(path))
|
||||||
|
: path
|
||||||
|
return dirname(arg)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the given path is a subdirectory of the given directory.
|
* Checks if the given path is a subdirectory of the given directory.
|
||||||
*
|
*
|
||||||
|
|||||||
@ -37,6 +37,7 @@ export enum AppRoute {
|
|||||||
getAppConfigurations = 'getAppConfigurations',
|
getAppConfigurations = 'getAppConfigurations',
|
||||||
updateAppConfiguration = 'updateAppConfiguration',
|
updateAppConfiguration = 'updateAppConfiguration',
|
||||||
joinPath = 'joinPath',
|
joinPath = 'joinPath',
|
||||||
|
dirName = 'dirName',
|
||||||
isSubdirectory = 'isSubdirectory',
|
isSubdirectory = 'isSubdirectory',
|
||||||
baseName = 'baseName',
|
baseName = 'baseName',
|
||||||
startServer = 'startServer',
|
startServer = 'startServer',
|
||||||
|
|||||||
@ -52,3 +52,18 @@ type DownloadSize = {
|
|||||||
total: number
|
total: number
|
||||||
transferred: number
|
transferred: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The file metadata
|
||||||
|
*/
|
||||||
|
export type FileMetadata = {
|
||||||
|
/**
|
||||||
|
* The origin file path.
|
||||||
|
*/
|
||||||
|
file_path: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The file name.
|
||||||
|
*/
|
||||||
|
file_name: string
|
||||||
|
}
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
import { FileMetadata } from '../file'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents the information about a model.
|
* Represents the information about a model.
|
||||||
* @stored
|
* @stored
|
||||||
@ -151,3 +153,8 @@ export type ModelRuntimeParams = {
|
|||||||
export type ModelInitFailed = Model & {
|
export type ModelInitFailed = Model & {
|
||||||
error: Error
|
error: Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ModelFile is the model.json entity and it's file metadata
|
||||||
|
*/
|
||||||
|
export type ModelFile = Model & FileMetadata
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { GpuSetting } from '../miscellaneous'
|
import { GpuSetting } from '../miscellaneous'
|
||||||
import { Model } from './modelEntity'
|
import { Model, ModelFile } from './modelEntity'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Model extension for managing models.
|
* Model extension for managing models.
|
||||||
@ -29,14 +29,7 @@ export interface ModelInterface {
|
|||||||
* @param modelId - The ID of the model to delete.
|
* @param modelId - The ID of the model to delete.
|
||||||
* @returns A Promise that resolves when the model has been deleted.
|
* @returns A Promise that resolves when the model has been deleted.
|
||||||
*/
|
*/
|
||||||
deleteModel(modelId: string): Promise<void>
|
deleteModel(model: ModelFile): Promise<void>
|
||||||
|
|
||||||
/**
|
|
||||||
* Saves a model.
|
|
||||||
* @param model - The model to save.
|
|
||||||
* @returns A Promise that resolves when the model has been saved.
|
|
||||||
*/
|
|
||||||
saveModel(model: Model): Promise<void>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets a list of downloaded models.
|
* Gets a list of downloaded models.
|
||||||
|
|||||||
@ -22,6 +22,7 @@ import {
|
|||||||
downloadFile,
|
downloadFile,
|
||||||
DownloadState,
|
DownloadState,
|
||||||
DownloadEvent,
|
DownloadEvent,
|
||||||
|
ModelFile,
|
||||||
} from '@janhq/core'
|
} from '@janhq/core'
|
||||||
|
|
||||||
declare const CUDA_DOWNLOAD_URL: string
|
declare const CUDA_DOWNLOAD_URL: string
|
||||||
@ -94,7 +95,7 @@ export default class JanInferenceNitroExtension extends LocalOAIEngine {
|
|||||||
this.nitroProcessInfo = health
|
this.nitroProcessInfo = health
|
||||||
}
|
}
|
||||||
|
|
||||||
override loadModel(model: Model): Promise<void> {
|
override loadModel(model: ModelFile): Promise<void> {
|
||||||
if (model.engine !== this.provider) return Promise.resolve()
|
if (model.engine !== this.provider) return Promise.resolve()
|
||||||
this.getNitroProcessHealthIntervalId = setInterval(
|
this.getNitroProcessHealthIntervalId = setInterval(
|
||||||
() => this.periodicallyGetNitroHealth(),
|
() => this.periodicallyGetNitroHealth(),
|
||||||
|
|||||||
@ -6,12 +6,12 @@ import fetchRT from 'fetch-retry'
|
|||||||
import {
|
import {
|
||||||
log,
|
log,
|
||||||
getSystemResourceInfo,
|
getSystemResourceInfo,
|
||||||
Model,
|
|
||||||
InferenceEngine,
|
InferenceEngine,
|
||||||
ModelSettingParams,
|
ModelSettingParams,
|
||||||
PromptTemplate,
|
PromptTemplate,
|
||||||
SystemInformation,
|
SystemInformation,
|
||||||
getJanDataFolderPath,
|
getJanDataFolderPath,
|
||||||
|
ModelFile,
|
||||||
} from '@janhq/core/node'
|
} from '@janhq/core/node'
|
||||||
import { executableNitroFile } from './execute'
|
import { executableNitroFile } from './execute'
|
||||||
import terminate from 'terminate'
|
import terminate from 'terminate'
|
||||||
@ -25,7 +25,7 @@ const fetchRetry = fetchRT(fetch)
|
|||||||
*/
|
*/
|
||||||
interface ModelInitOptions {
|
interface ModelInitOptions {
|
||||||
modelFolder: string
|
modelFolder: string
|
||||||
model: Model
|
model: ModelFile
|
||||||
}
|
}
|
||||||
// The PORT to use for the Nitro subprocess
|
// The PORT to use for the Nitro subprocess
|
||||||
const PORT = 3928
|
const PORT = 3928
|
||||||
|
|||||||
9
extensions/model-extension/jest.config.js
Normal file
9
extensions/model-extension/jest.config.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
||||||
|
module.exports = {
|
||||||
|
preset: 'ts-jest',
|
||||||
|
testEnvironment: 'node',
|
||||||
|
transform: {
|
||||||
|
'node_modules/@janhq/core/.+\\.(j|t)s?$': 'ts-jest',
|
||||||
|
},
|
||||||
|
transformIgnorePatterns: ['node_modules/(?!@janhq/core/.*)'],
|
||||||
|
}
|
||||||
@ -8,6 +8,7 @@
|
|||||||
"author": "Jan <service@jan.ai>",
|
"author": "Jan <service@jan.ai>",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"test": "jest",
|
||||||
"build": "tsc --module commonjs && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript --bundleConfigAsCjs",
|
"build": "tsc --module commonjs && rollup -c rollup.config.ts --configPlugin @rollup/plugin-typescript --bundleConfigAsCjs",
|
||||||
"build:publish": "rimraf *.tgz --glob && yarn build && npm pack && cpx *.tgz ../../pre-install"
|
"build:publish": "rimraf *.tgz --glob && yarn build && npm pack && cpx *.tgz ../../pre-install"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -27,7 +27,7 @@ export default [
|
|||||||
// Allow json resolution
|
// Allow json resolution
|
||||||
json(),
|
json(),
|
||||||
// Compile TypeScript files
|
// Compile TypeScript files
|
||||||
typescript({ useTsconfigDeclarationDir: true }),
|
typescript({ useTsconfigDeclarationDir: true, exclude: ['**/__tests__', '**/*.test.ts'], }),
|
||||||
// Compile TypeScript files
|
// Compile TypeScript files
|
||||||
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
|
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
|
||||||
// commonjs(),
|
// commonjs(),
|
||||||
@ -62,7 +62,7 @@ export default [
|
|||||||
// Allow json resolution
|
// Allow json resolution
|
||||||
json(),
|
json(),
|
||||||
// Compile TypeScript files
|
// Compile TypeScript files
|
||||||
typescript({ useTsconfigDeclarationDir: true }),
|
typescript({ useTsconfigDeclarationDir: true, exclude: ['**/__tests__', '**/*.test.ts'], }),
|
||||||
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
|
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
|
||||||
commonjs(),
|
commonjs(),
|
||||||
// Allow node_modules resolution, so you can use 'external' to control
|
// Allow node_modules resolution, so you can use 'external' to control
|
||||||
|
|||||||
564
extensions/model-extension/src/index.test.ts
Normal file
564
extensions/model-extension/src/index.test.ts
Normal file
@ -0,0 +1,564 @@
|
|||||||
|
const readDirSyncMock = jest.fn()
|
||||||
|
const existMock = jest.fn()
|
||||||
|
const readFileSyncMock = jest.fn()
|
||||||
|
|
||||||
|
jest.mock('@janhq/core', () => ({
|
||||||
|
...jest.requireActual('@janhq/core/node'),
|
||||||
|
fs: {
|
||||||
|
existsSync: existMock,
|
||||||
|
readdirSync: readDirSyncMock,
|
||||||
|
readFileSync: readFileSyncMock,
|
||||||
|
fileStat: () => ({
|
||||||
|
isDirectory: false,
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
dirName: jest.fn(),
|
||||||
|
joinPath: (paths) => paths.join('/'),
|
||||||
|
ModelExtension: jest.fn(),
|
||||||
|
}))
|
||||||
|
|
||||||
|
import JanModelExtension from '.'
|
||||||
|
import { fs, dirName } from '@janhq/core'
|
||||||
|
|
||||||
|
describe('JanModelExtension', () => {
|
||||||
|
let sut: JanModelExtension
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
// @ts-ignore
|
||||||
|
sut = new JanModelExtension()
|
||||||
|
})
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
jest.clearAllMocks()
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('getConfiguredModels', () => {
|
||||||
|
describe("when there's no models are pre-populated", () => {
|
||||||
|
it('should return empty array', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = []
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
readDirSyncMock.mockReturnValue([])
|
||||||
|
|
||||||
|
const result = await sut.getConfiguredModels()
|
||||||
|
expect(result).toEqual([])
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe("when there's are pre-populated models - all flattened", () => {
|
||||||
|
it('returns configured models data - flatten folder - with correct file_path and model id', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = [
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
name: 'Model 1',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Model 1 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model1',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
created: new Date(),
|
||||||
|
updated: new Date(),
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
{
|
||||||
|
id: '2',
|
||||||
|
name: 'Model 2',
|
||||||
|
version: '2.0.0',
|
||||||
|
description: 'Model 2 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model2',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
]
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
if (path === 'file://models') return ['model1', 'model2']
|
||||||
|
else return ['model.json']
|
||||||
|
})
|
||||||
|
|
||||||
|
readFileSyncMock.mockImplementation((path) => {
|
||||||
|
if (path.includes('model1'))
|
||||||
|
return JSON.stringify(configuredModels[0])
|
||||||
|
else return JSON.stringify(configuredModels[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
const result = await sut.getConfiguredModels()
|
||||||
|
expect(result).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
id: '1',
|
||||||
|
}),
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model2/model.json',
|
||||||
|
id: '2',
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe("when there's are pre-populated models - there are nested folders", () => {
|
||||||
|
it('returns configured models data - flatten folder - with correct file_path and model id', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = [
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
name: 'Model 1',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Model 1 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model1',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
created: new Date(),
|
||||||
|
updated: new Date(),
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
{
|
||||||
|
id: '2',
|
||||||
|
name: 'Model 2',
|
||||||
|
version: '2.0.0',
|
||||||
|
description: 'Model 2 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model2',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
]
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
if (path === 'file://models') return ['model1', 'model2/model2-1']
|
||||||
|
else return ['model.json']
|
||||||
|
})
|
||||||
|
|
||||||
|
readFileSyncMock.mockImplementation((path) => {
|
||||||
|
if (path.includes('model1'))
|
||||||
|
return JSON.stringify(configuredModels[0])
|
||||||
|
else if (path.includes('model2/model2-1'))
|
||||||
|
return JSON.stringify(configuredModels[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
const result = await sut.getConfiguredModels()
|
||||||
|
expect(result).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
id: '1',
|
||||||
|
}),
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model2/model2-1/model.json',
|
||||||
|
id: '2',
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('getDownloadedModels', () => {
|
||||||
|
describe('no models downloaded', () => {
|
||||||
|
it('should return empty array', async () => {
|
||||||
|
// Mock downloaded models data
|
||||||
|
const downloadedModels = []
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
readDirSyncMock.mockReturnValue([])
|
||||||
|
|
||||||
|
const result = await sut.getDownloadedModels()
|
||||||
|
expect(result).toEqual([])
|
||||||
|
})
|
||||||
|
})
|
||||||
|
describe('only one model is downloaded', () => {
|
||||||
|
describe('flatten folder', () => {
|
||||||
|
it('returns downloaded models - with correct file_path and model id', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = [
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
name: 'Model 1',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Model 1 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model1',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
created: new Date(),
|
||||||
|
updated: new Date(),
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
{
|
||||||
|
id: '2',
|
||||||
|
name: 'Model 2',
|
||||||
|
version: '2.0.0',
|
||||||
|
description: 'Model 2 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model2',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
]
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
if (path === 'file://models') return ['model1', 'model2']
|
||||||
|
else if (path === 'file://models/model1')
|
||||||
|
return ['model.json', 'test.gguf']
|
||||||
|
else return ['model.json']
|
||||||
|
})
|
||||||
|
|
||||||
|
readFileSyncMock.mockImplementation((path) => {
|
||||||
|
if (path.includes('model1'))
|
||||||
|
return JSON.stringify(configuredModels[0])
|
||||||
|
else return JSON.stringify(configuredModels[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
const result = await sut.getDownloadedModels()
|
||||||
|
expect(result).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
id: '1',
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('all models are downloaded', () => {
|
||||||
|
describe('nested folders', () => {
|
||||||
|
it('returns downloaded models - with correct file_path and model id', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = [
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
name: 'Model 1',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Model 1 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model1',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
created: new Date(),
|
||||||
|
updated: new Date(),
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
{
|
||||||
|
id: '2',
|
||||||
|
name: 'Model 2',
|
||||||
|
version: '2.0.0',
|
||||||
|
description: 'Model 2 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model2',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
]
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
if (path === 'file://models') return ['model1', 'model2/model2-1']
|
||||||
|
else return ['model.json', 'test.gguf']
|
||||||
|
})
|
||||||
|
|
||||||
|
readFileSyncMock.mockImplementation((path) => {
|
||||||
|
if (path.includes('model1'))
|
||||||
|
return JSON.stringify(configuredModels[0])
|
||||||
|
else return JSON.stringify(configuredModels[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
const result = await sut.getDownloadedModels()
|
||||||
|
expect(result).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
id: '1',
|
||||||
|
}),
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model2/model2-1/model.json',
|
||||||
|
id: '2',
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('all models are downloaded with uppercased GGUF files', () => {
|
||||||
|
it('returns downloaded models - with correct file_path and model id', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = [
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
name: 'Model 1',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Model 1 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model1',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
created: new Date(),
|
||||||
|
updated: new Date(),
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
{
|
||||||
|
id: '2',
|
||||||
|
name: 'Model 2',
|
||||||
|
version: '2.0.0',
|
||||||
|
description: 'Model 2 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model2',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
]
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
if (path === 'file://models') return ['model1', 'model2/model2-1']
|
||||||
|
else if (path === 'file://models/model1')
|
||||||
|
return ['model.json', 'test.GGUF']
|
||||||
|
else return ['model.json', 'test.gguf']
|
||||||
|
})
|
||||||
|
|
||||||
|
readFileSyncMock.mockImplementation((path) => {
|
||||||
|
if (path.includes('model1'))
|
||||||
|
return JSON.stringify(configuredModels[0])
|
||||||
|
else return JSON.stringify(configuredModels[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
const result = await sut.getDownloadedModels()
|
||||||
|
expect(result).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
id: '1',
|
||||||
|
}),
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model2/model2-1/model.json',
|
||||||
|
id: '2',
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('all models are downloaded - GGUF & Tensort RT', () => {
|
||||||
|
it('returns downloaded models - with correct file_path and model id', async () => {
|
||||||
|
// Mock configured models data
|
||||||
|
const configuredModels = [
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
name: 'Model 1',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Model 1 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model1',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
created: new Date(),
|
||||||
|
updated: new Date(),
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
{
|
||||||
|
id: '2',
|
||||||
|
name: 'Model 2',
|
||||||
|
version: '2.0.0',
|
||||||
|
description: 'Model 2 description',
|
||||||
|
object: {
|
||||||
|
type: 'model',
|
||||||
|
uri: 'http://localhost:5000/models/model2',
|
||||||
|
},
|
||||||
|
format: 'onnx',
|
||||||
|
sources: [],
|
||||||
|
parameters: {},
|
||||||
|
settings: {},
|
||||||
|
metadata: {},
|
||||||
|
engine: 'test',
|
||||||
|
} as any,
|
||||||
|
]
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
if (path === 'file://models') return ['model1', 'model2/model2-1']
|
||||||
|
else if (path === 'file://models/model1')
|
||||||
|
return ['model.json', 'test.gguf']
|
||||||
|
else return ['model.json', 'test.engine']
|
||||||
|
})
|
||||||
|
|
||||||
|
readFileSyncMock.mockImplementation((path) => {
|
||||||
|
if (path.includes('model1'))
|
||||||
|
return JSON.stringify(configuredModels[0])
|
||||||
|
else return JSON.stringify(configuredModels[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
const result = await sut.getDownloadedModels()
|
||||||
|
expect(result).toEqual(
|
||||||
|
expect.arrayContaining([
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
id: '1',
|
||||||
|
}),
|
||||||
|
expect.objectContaining({
|
||||||
|
file_path: 'file://models/model2/model2-1/model.json',
|
||||||
|
id: '2',
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('deleteModel', () => {
|
||||||
|
describe('model is a GGUF model', () => {
|
||||||
|
it('should delete the GGUF file', async () => {
|
||||||
|
fs.unlinkSync = jest.fn()
|
||||||
|
const dirMock = dirName as jest.Mock
|
||||||
|
dirMock.mockReturnValue('file://models/model1')
|
||||||
|
|
||||||
|
fs.readFileSync = jest.fn().mockReturnValue(JSON.stringify({}))
|
||||||
|
|
||||||
|
readDirSyncMock.mockImplementation((path) => {
|
||||||
|
return ['model.json', 'test.gguf']
|
||||||
|
})
|
||||||
|
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
await sut.deleteModel({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
} as any)
|
||||||
|
|
||||||
|
expect(fs.unlinkSync).toHaveBeenCalledWith(
|
||||||
|
'file://models/model1/test.gguf'
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('no gguf file presented', async () => {
|
||||||
|
fs.unlinkSync = jest.fn()
|
||||||
|
const dirMock = dirName as jest.Mock
|
||||||
|
dirMock.mockReturnValue('file://models/model1')
|
||||||
|
|
||||||
|
fs.readFileSync = jest.fn().mockReturnValue(JSON.stringify({}))
|
||||||
|
|
||||||
|
readDirSyncMock.mockReturnValue(['model.json'])
|
||||||
|
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
await sut.deleteModel({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
} as any)
|
||||||
|
|
||||||
|
expect(fs.unlinkSync).toHaveBeenCalledTimes(0)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('delete an imported model', async () => {
|
||||||
|
fs.rm = jest.fn()
|
||||||
|
const dirMock = dirName as jest.Mock
|
||||||
|
dirMock.mockReturnValue('file://models/model1')
|
||||||
|
|
||||||
|
readDirSyncMock.mockReturnValue(['model.json', 'test.gguf'])
|
||||||
|
|
||||||
|
// MARK: This is a tricky logic implement?
|
||||||
|
// I will just add test for now but will align on the legacy implementation
|
||||||
|
fs.readFileSync = jest.fn().mockReturnValue(
|
||||||
|
JSON.stringify({
|
||||||
|
metadata: {
|
||||||
|
author: 'user',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
await sut.deleteModel({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
} as any)
|
||||||
|
|
||||||
|
expect(fs.rm).toHaveBeenCalledWith('file://models/model1')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('delete tensorrt-models', async () => {
|
||||||
|
fs.rm = jest.fn()
|
||||||
|
const dirMock = dirName as jest.Mock
|
||||||
|
dirMock.mockReturnValue('file://models/model1')
|
||||||
|
|
||||||
|
readDirSyncMock.mockReturnValue(['model.json', 'test.engine'])
|
||||||
|
|
||||||
|
fs.readFileSync = jest.fn().mockReturnValue(JSON.stringify({}))
|
||||||
|
|
||||||
|
existMock.mockReturnValue(true)
|
||||||
|
|
||||||
|
await sut.deleteModel({
|
||||||
|
file_path: 'file://models/model1/model.json',
|
||||||
|
} as any)
|
||||||
|
|
||||||
|
expect(fs.unlinkSync).toHaveBeenCalledWith('file://models/model1/test.engine')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
@ -22,6 +22,8 @@ import {
|
|||||||
getFileSize,
|
getFileSize,
|
||||||
AllQuantizations,
|
AllQuantizations,
|
||||||
ModelEvent,
|
ModelEvent,
|
||||||
|
ModelFile,
|
||||||
|
dirName,
|
||||||
} from '@janhq/core'
|
} from '@janhq/core'
|
||||||
|
|
||||||
import { extractFileName } from './helpers/path'
|
import { extractFileName } from './helpers/path'
|
||||||
@ -48,16 +50,7 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
]
|
]
|
||||||
private static readonly _tensorRtEngineFormat = '.engine'
|
private static readonly _tensorRtEngineFormat = '.engine'
|
||||||
private static readonly _supportedGpuArch = ['ampere', 'ada']
|
private static readonly _supportedGpuArch = ['ampere', 'ada']
|
||||||
private static readonly _safetensorsRegexs = [
|
|
||||||
/model\.safetensors$/,
|
|
||||||
/model-[0-9]+-of-[0-9]+\.safetensors$/,
|
|
||||||
]
|
|
||||||
private static readonly _pytorchRegexs = [
|
|
||||||
/pytorch_model\.bin$/,
|
|
||||||
/consolidated\.[0-9]+\.pth$/,
|
|
||||||
/pytorch_model-[0-9]+-of-[0-9]+\.bin$/,
|
|
||||||
/.*\.pt$/,
|
|
||||||
]
|
|
||||||
interrupted = false
|
interrupted = false
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -319,9 +312,9 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
* @param filePath - The path to the model file to delete.
|
* @param filePath - The path to the model file to delete.
|
||||||
* @returns A Promise that resolves when the model is deleted.
|
* @returns A Promise that resolves when the model is deleted.
|
||||||
*/
|
*/
|
||||||
async deleteModel(modelId: string): Promise<void> {
|
async deleteModel(model: ModelFile): Promise<void> {
|
||||||
try {
|
try {
|
||||||
const dirPath = await joinPath([JanModelExtension._homeDir, modelId])
|
const dirPath = await dirName(model.file_path)
|
||||||
const jsonFilePath = await joinPath([
|
const jsonFilePath = await joinPath([
|
||||||
dirPath,
|
dirPath,
|
||||||
JanModelExtension._modelMetadataFileName,
|
JanModelExtension._modelMetadataFileName,
|
||||||
@ -330,6 +323,8 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
await this.readModelMetadata(jsonFilePath)
|
await this.readModelMetadata(jsonFilePath)
|
||||||
) as Model
|
) as Model
|
||||||
|
|
||||||
|
// TODO: This is so tricky?
|
||||||
|
// Should depend on sources?
|
||||||
const isUserImportModel =
|
const isUserImportModel =
|
||||||
modelInfo.metadata?.author?.toLowerCase() === 'user'
|
modelInfo.metadata?.author?.toLowerCase() === 'user'
|
||||||
if (isUserImportModel) {
|
if (isUserImportModel) {
|
||||||
@ -350,30 +345,11 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Saves a model file.
|
|
||||||
* @param model - The model to save.
|
|
||||||
* @returns A Promise that resolves when the model is saved.
|
|
||||||
*/
|
|
||||||
async saveModel(model: Model): Promise<void> {
|
|
||||||
const jsonFilePath = await joinPath([
|
|
||||||
JanModelExtension._homeDir,
|
|
||||||
model.id,
|
|
||||||
JanModelExtension._modelMetadataFileName,
|
|
||||||
])
|
|
||||||
|
|
||||||
try {
|
|
||||||
await fs.writeFileSync(jsonFilePath, JSON.stringify(model, null, 2))
|
|
||||||
} catch (err) {
|
|
||||||
console.error(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets all downloaded models.
|
* Gets all downloaded models.
|
||||||
* @returns A Promise that resolves with an array of all models.
|
* @returns A Promise that resolves with an array of all models.
|
||||||
*/
|
*/
|
||||||
async getDownloadedModels(): Promise<Model[]> {
|
async getDownloadedModels(): Promise<ModelFile[]> {
|
||||||
return await this.getModelsMetadata(
|
return await this.getModelsMetadata(
|
||||||
async (modelDir: string, model: Model) => {
|
async (modelDir: string, model: Model) => {
|
||||||
if (!JanModelExtension._offlineInferenceEngine.includes(model.engine))
|
if (!JanModelExtension._offlineInferenceEngine.includes(model.engine))
|
||||||
@ -425,8 +401,10 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
): Promise<string | undefined> {
|
): Promise<string | undefined> {
|
||||||
// try to find model.json recursively inside each folder
|
// try to find model.json recursively inside each folder
|
||||||
if (!(await fs.existsSync(folderFullPath))) return undefined
|
if (!(await fs.existsSync(folderFullPath))) return undefined
|
||||||
|
|
||||||
const files: string[] = await fs.readdirSync(folderFullPath)
|
const files: string[] = await fs.readdirSync(folderFullPath)
|
||||||
if (files.length === 0) return undefined
|
if (files.length === 0) return undefined
|
||||||
|
|
||||||
if (files.includes(JanModelExtension._modelMetadataFileName)) {
|
if (files.includes(JanModelExtension._modelMetadataFileName)) {
|
||||||
return joinPath([
|
return joinPath([
|
||||||
folderFullPath,
|
folderFullPath,
|
||||||
@ -446,7 +424,7 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
|
|
||||||
private async getModelsMetadata(
|
private async getModelsMetadata(
|
||||||
selector?: (path: string, model: Model) => Promise<boolean>
|
selector?: (path: string, model: Model) => Promise<boolean>
|
||||||
): Promise<Model[]> {
|
): Promise<ModelFile[]> {
|
||||||
try {
|
try {
|
||||||
if (!(await fs.existsSync(JanModelExtension._homeDir))) {
|
if (!(await fs.existsSync(JanModelExtension._homeDir))) {
|
||||||
console.debug('Model folder not found')
|
console.debug('Model folder not found')
|
||||||
@ -469,6 +447,7 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
JanModelExtension._homeDir,
|
JanModelExtension._homeDir,
|
||||||
dirName,
|
dirName,
|
||||||
])
|
])
|
||||||
|
|
||||||
const jsonPath = await this.getModelJsonPath(folderFullPath)
|
const jsonPath = await this.getModelJsonPath(folderFullPath)
|
||||||
|
|
||||||
if (await fs.existsSync(jsonPath)) {
|
if (await fs.existsSync(jsonPath)) {
|
||||||
@ -486,6 +465,8 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
model.file_path = jsonPath
|
||||||
|
model.file_name = JanModelExtension._modelMetadataFileName
|
||||||
|
|
||||||
if (selector && !(await selector?.(dirName, model))) {
|
if (selector && !(await selector?.(dirName, model))) {
|
||||||
return
|
return
|
||||||
@ -506,7 +487,7 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
typeof result.value === 'object'
|
typeof result.value === 'object'
|
||||||
? result.value
|
? result.value
|
||||||
: JSON.parse(result.value)
|
: JSON.parse(result.value)
|
||||||
return model as Model
|
return model as ModelFile
|
||||||
} catch {
|
} catch {
|
||||||
console.debug(`Unable to parse model metadata: ${result.value}`)
|
console.debug(`Unable to parse model metadata: ${result.value}`)
|
||||||
}
|
}
|
||||||
@ -637,7 +618,7 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
* Gets all available models.
|
* Gets all available models.
|
||||||
* @returns A Promise that resolves with an array of all models.
|
* @returns A Promise that resolves with an array of all models.
|
||||||
*/
|
*/
|
||||||
async getConfiguredModels(): Promise<Model[]> {
|
async getConfiguredModels(): Promise<ModelFile[]> {
|
||||||
return this.getModelsMetadata()
|
return this.getModelsMetadata()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -669,7 +650,7 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
modelBinaryPath: string,
|
modelBinaryPath: string,
|
||||||
modelFolderName: string,
|
modelFolderName: string,
|
||||||
modelFolderPath: string
|
modelFolderPath: string
|
||||||
): Promise<Model> {
|
): Promise<ModelFile> {
|
||||||
const fileStats = await fs.fileStat(modelBinaryPath, true)
|
const fileStats = await fs.fileStat(modelBinaryPath, true)
|
||||||
const binaryFileSize = fileStats.size
|
const binaryFileSize = fileStats.size
|
||||||
|
|
||||||
@ -732,25 +713,21 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
|
|
||||||
await fs.writeFileSync(modelFilePath, JSON.stringify(model, null, 2))
|
await fs.writeFileSync(modelFilePath, JSON.stringify(model, null, 2))
|
||||||
|
|
||||||
return model
|
return {
|
||||||
|
...model,
|
||||||
|
file_path: modelFilePath,
|
||||||
|
file_name: JanModelExtension._modelMetadataFileName,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async updateModelInfo(modelInfo: Partial<Model>): Promise<Model> {
|
async updateModelInfo(modelInfo: Partial<ModelFile>): Promise<ModelFile> {
|
||||||
const modelId = modelInfo.id
|
|
||||||
if (modelInfo.id == null) throw new Error('Model ID is required')
|
if (modelInfo.id == null) throw new Error('Model ID is required')
|
||||||
|
|
||||||
const janDataFolderPath = await getJanDataFolderPath()
|
|
||||||
const jsonFilePath = await joinPath([
|
|
||||||
janDataFolderPath,
|
|
||||||
'models',
|
|
||||||
modelId,
|
|
||||||
JanModelExtension._modelMetadataFileName,
|
|
||||||
])
|
|
||||||
const model = JSON.parse(
|
const model = JSON.parse(
|
||||||
await this.readModelMetadata(jsonFilePath)
|
await this.readModelMetadata(modelInfo.file_path)
|
||||||
) as Model
|
) as ModelFile
|
||||||
|
|
||||||
const updatedModel: Model = {
|
const updatedModel: ModelFile = {
|
||||||
...model,
|
...model,
|
||||||
...modelInfo,
|
...modelInfo,
|
||||||
parameters: {
|
parameters: {
|
||||||
@ -765,9 +742,15 @@ export default class JanModelExtension extends ModelExtension {
|
|||||||
...model.metadata,
|
...model.metadata,
|
||||||
...modelInfo.metadata,
|
...modelInfo.metadata,
|
||||||
},
|
},
|
||||||
|
// Should not persist file_path & file_name
|
||||||
|
file_path: undefined,
|
||||||
|
file_name: undefined,
|
||||||
}
|
}
|
||||||
|
|
||||||
await fs.writeFileSync(jsonFilePath, JSON.stringify(updatedModel, null, 2))
|
await fs.writeFileSync(
|
||||||
|
modelInfo.file_path,
|
||||||
|
JSON.stringify(updatedModel, null, 2)
|
||||||
|
)
|
||||||
return updatedModel
|
return updatedModel
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -10,5 +10,6 @@
|
|||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"rootDir": "./src"
|
"rootDir": "./src"
|
||||||
},
|
},
|
||||||
"include": ["./src"]
|
"include": ["./src"],
|
||||||
|
"exclude": ["**/*.test.ts"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,6 +23,7 @@ import {
|
|||||||
ModelEvent,
|
ModelEvent,
|
||||||
getJanDataFolderPath,
|
getJanDataFolderPath,
|
||||||
SystemInformation,
|
SystemInformation,
|
||||||
|
ModelFile,
|
||||||
} from '@janhq/core'
|
} from '@janhq/core'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -137,7 +138,7 @@ export default class TensorRTLLMExtension extends LocalOAIEngine {
|
|||||||
events.emit(ModelEvent.OnModelsUpdate, {})
|
events.emit(ModelEvent.OnModelsUpdate, {})
|
||||||
}
|
}
|
||||||
|
|
||||||
override async loadModel(model: Model): Promise<void> {
|
override async loadModel(model: ModelFile): Promise<void> {
|
||||||
if ((await this.installationState()) === 'Installed')
|
if ((await this.installationState()) === 'Installed')
|
||||||
return super.loadModel(model)
|
return super.loadModel(model)
|
||||||
|
|
||||||
|
|||||||
@ -46,7 +46,6 @@ import {
|
|||||||
|
|
||||||
import { extensionManager } from '@/extension'
|
import { extensionManager } from '@/extension'
|
||||||
|
|
||||||
import { preserveModelSettingsAtom } from '@/helpers/atoms/AppConfig.atom'
|
|
||||||
import { inActiveEngineProviderAtom } from '@/helpers/atoms/Extension.atom'
|
import { inActiveEngineProviderAtom } from '@/helpers/atoms/Extension.atom'
|
||||||
import {
|
import {
|
||||||
configuredModelsAtom,
|
configuredModelsAtom,
|
||||||
@ -91,8 +90,6 @@ const ModelDropdown = ({
|
|||||||
const featuredModel = configuredModels.filter((x) =>
|
const featuredModel = configuredModels.filter((x) =>
|
||||||
x.metadata.tags.includes('Featured')
|
x.metadata.tags.includes('Featured')
|
||||||
)
|
)
|
||||||
const preserveModelSettings = useAtomValue(preserveModelSettingsAtom)
|
|
||||||
|
|
||||||
const { updateThreadMetadata } = useCreateNewThread()
|
const { updateThreadMetadata } = useCreateNewThread()
|
||||||
|
|
||||||
useClickOutside(() => !filterOptionsOpen && setOpen(false), null, [
|
useClickOutside(() => !filterOptionsOpen && setOpen(false), null, [
|
||||||
@ -191,27 +188,14 @@ const ModelDropdown = ({
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
||||||
// Default setting ctx_len for the model for a better onboarding experience
|
|
||||||
// TODO: When Cortex support hardware instructions, we should remove this
|
|
||||||
const defaultContextLength = preserveModelSettings
|
|
||||||
? model?.metadata?.default_ctx_len
|
|
||||||
: 2048
|
|
||||||
const defaultMaxTokens = preserveModelSettings
|
|
||||||
? model?.metadata?.default_max_tokens
|
|
||||||
: 2048
|
|
||||||
const overriddenSettings =
|
const overriddenSettings =
|
||||||
model?.settings.ctx_len && model.settings.ctx_len > 2048
|
model?.settings.ctx_len && model.settings.ctx_len > 4096
|
||||||
? { ctx_len: defaultContextLength ?? 2048 }
|
? { ctx_len: 4096 }
|
||||||
: {}
|
|
||||||
const overriddenParameters =
|
|
||||||
model?.parameters.max_tokens && model.parameters.max_tokens
|
|
||||||
? { max_tokens: defaultMaxTokens ?? 2048 }
|
|
||||||
: {}
|
: {}
|
||||||
|
|
||||||
const modelParams = {
|
const modelParams = {
|
||||||
...model?.parameters,
|
...model?.parameters,
|
||||||
...model?.settings,
|
...model?.settings,
|
||||||
...overriddenParameters,
|
|
||||||
...overriddenSettings,
|
...overriddenSettings,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -222,6 +206,7 @@ const ModelDropdown = ({
|
|||||||
if (model)
|
if (model)
|
||||||
updateModelParameter(activeThread, {
|
updateModelParameter(activeThread, {
|
||||||
params: modelParams,
|
params: modelParams,
|
||||||
|
modelPath: model.file_path,
|
||||||
modelId: model.id,
|
modelId: model.id,
|
||||||
engine: model.engine,
|
engine: model.engine,
|
||||||
})
|
})
|
||||||
@ -235,7 +220,6 @@ const ModelDropdown = ({
|
|||||||
setThreadModelParams,
|
setThreadModelParams,
|
||||||
updateModelParameter,
|
updateModelParameter,
|
||||||
updateThreadMetadata,
|
updateThreadMetadata,
|
||||||
preserveModelSettings,
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,6 @@ const VULKAN_ENABLED = 'vulkanEnabled'
|
|||||||
const IGNORE_SSL = 'ignoreSSLFeature'
|
const IGNORE_SSL = 'ignoreSSLFeature'
|
||||||
const HTTPS_PROXY_FEATURE = 'httpsProxyFeature'
|
const HTTPS_PROXY_FEATURE = 'httpsProxyFeature'
|
||||||
const QUICK_ASK_ENABLED = 'quickAskEnabled'
|
const QUICK_ASK_ENABLED = 'quickAskEnabled'
|
||||||
const PRESERVE_MODEL_SETTINGS = 'preserveModelSettings'
|
|
||||||
|
|
||||||
export const janDataFolderPathAtom = atom('')
|
export const janDataFolderPathAtom = atom('')
|
||||||
|
|
||||||
@ -24,9 +23,3 @@ export const vulkanEnabledAtom = atomWithStorage(VULKAN_ENABLED, false)
|
|||||||
export const quickAskEnabledAtom = atomWithStorage(QUICK_ASK_ENABLED, false)
|
export const quickAskEnabledAtom = atomWithStorage(QUICK_ASK_ENABLED, false)
|
||||||
|
|
||||||
export const hostAtom = atom('http://localhost:1337/')
|
export const hostAtom = atom('http://localhost:1337/')
|
||||||
|
|
||||||
// This feature is to allow user to cache model settings on thread creation
|
|
||||||
export const preserveModelSettingsAtom = atomWithStorage(
|
|
||||||
PRESERVE_MODEL_SETTINGS,
|
|
||||||
false
|
|
||||||
)
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { ImportingModel, Model, InferenceEngine } from '@janhq/core'
|
import { ImportingModel, Model, InferenceEngine, ModelFile } from '@janhq/core'
|
||||||
import { atom } from 'jotai'
|
import { atom } from 'jotai'
|
||||||
|
|
||||||
import { localEngines } from '@/utils/modelEngine'
|
import { localEngines } from '@/utils/modelEngine'
|
||||||
@ -32,18 +32,7 @@ export const removeDownloadingModelAtom = atom(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
export const downloadedModelsAtom = atom<Model[]>([])
|
export const downloadedModelsAtom = atom<ModelFile[]>([])
|
||||||
|
|
||||||
export const updateDownloadedModelAtom = atom(
|
|
||||||
null,
|
|
||||||
(get, set, updatedModel: Model) => {
|
|
||||||
const models: Model[] = get(downloadedModelsAtom).map((c) =>
|
|
||||||
c.id === updatedModel.id ? updatedModel : c
|
|
||||||
)
|
|
||||||
|
|
||||||
set(downloadedModelsAtom, models)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
export const removeDownloadedModelAtom = atom(
|
export const removeDownloadedModelAtom = atom(
|
||||||
null,
|
null,
|
||||||
@ -57,7 +46,7 @@ export const removeDownloadedModelAtom = atom(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
export const configuredModelsAtom = atom<Model[]>([])
|
export const configuredModelsAtom = atom<ModelFile[]>([])
|
||||||
|
|
||||||
export const defaultModelAtom = atom<Model | undefined>(undefined)
|
export const defaultModelAtom = atom<Model | undefined>(undefined)
|
||||||
|
|
||||||
@ -144,6 +133,6 @@ export const updateImportingModelAtom = atom(
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
export const selectedModelAtom = atom<Model | undefined>(undefined)
|
export const selectedModelAtom = atom<ModelFile | undefined>(undefined)
|
||||||
|
|
||||||
export const showEngineListModelAtom = atom<InferenceEngine[]>(localEngines)
|
export const showEngineListModelAtom = atom<InferenceEngine[]>(localEngines)
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { useCallback, useEffect, useRef } from 'react'
|
import { useCallback, useEffect, useRef } from 'react'
|
||||||
|
|
||||||
import { EngineManager, Model } from '@janhq/core'
|
import { EngineManager, Model, ModelFile } from '@janhq/core'
|
||||||
import { atom, useAtom, useAtomValue, useSetAtom } from 'jotai'
|
import { atom, useAtom, useAtomValue, useSetAtom } from 'jotai'
|
||||||
|
|
||||||
import { toaster } from '@/containers/Toast'
|
import { toaster } from '@/containers/Toast'
|
||||||
@ -11,7 +11,7 @@ import { vulkanEnabledAtom } from '@/helpers/atoms/AppConfig.atom'
|
|||||||
import { downloadedModelsAtom } from '@/helpers/atoms/Model.atom'
|
import { downloadedModelsAtom } from '@/helpers/atoms/Model.atom'
|
||||||
import { activeThreadAtom } from '@/helpers/atoms/Thread.atom'
|
import { activeThreadAtom } from '@/helpers/atoms/Thread.atom'
|
||||||
|
|
||||||
export const activeModelAtom = atom<Model | undefined>(undefined)
|
export const activeModelAtom = atom<ModelFile | undefined>(undefined)
|
||||||
export const loadModelErrorAtom = atom<string | undefined>(undefined)
|
export const loadModelErrorAtom = atom<string | undefined>(undefined)
|
||||||
|
|
||||||
type ModelState = {
|
type ModelState = {
|
||||||
@ -37,7 +37,7 @@ export function useActiveModel() {
|
|||||||
const [pendingModelLoad, setPendingModelLoad] = useAtom(pendingModelLoadAtom)
|
const [pendingModelLoad, setPendingModelLoad] = useAtom(pendingModelLoadAtom)
|
||||||
const isVulkanEnabled = useAtomValue(vulkanEnabledAtom)
|
const isVulkanEnabled = useAtomValue(vulkanEnabledAtom)
|
||||||
|
|
||||||
const downloadedModelsRef = useRef<Model[]>([])
|
const downloadedModelsRef = useRef<ModelFile[]>([])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
downloadedModelsRef.current = downloadedModels
|
downloadedModelsRef.current = downloadedModels
|
||||||
|
|||||||
@ -7,8 +7,8 @@ import {
|
|||||||
Thread,
|
Thread,
|
||||||
ThreadAssistantInfo,
|
ThreadAssistantInfo,
|
||||||
ThreadState,
|
ThreadState,
|
||||||
Model,
|
|
||||||
AssistantTool,
|
AssistantTool,
|
||||||
|
ModelFile,
|
||||||
} from '@janhq/core'
|
} from '@janhq/core'
|
||||||
import { atom, useAtomValue, useSetAtom } from 'jotai'
|
import { atom, useAtomValue, useSetAtom } from 'jotai'
|
||||||
|
|
||||||
@ -26,10 +26,7 @@ import useSetActiveThread from './useSetActiveThread'
|
|||||||
|
|
||||||
import { extensionManager } from '@/extension'
|
import { extensionManager } from '@/extension'
|
||||||
|
|
||||||
import {
|
import { experimentalFeatureEnabledAtom } from '@/helpers/atoms/AppConfig.atom'
|
||||||
experimentalFeatureEnabledAtom,
|
|
||||||
preserveModelSettingsAtom,
|
|
||||||
} from '@/helpers/atoms/AppConfig.atom'
|
|
||||||
import { selectedModelAtom } from '@/helpers/atoms/Model.atom'
|
import { selectedModelAtom } from '@/helpers/atoms/Model.atom'
|
||||||
import {
|
import {
|
||||||
threadsAtom,
|
threadsAtom,
|
||||||
@ -67,7 +64,6 @@ export const useCreateNewThread = () => {
|
|||||||
const copyOverInstructionEnabled = useAtomValue(
|
const copyOverInstructionEnabled = useAtomValue(
|
||||||
copyOverInstructionEnabledAtom
|
copyOverInstructionEnabledAtom
|
||||||
)
|
)
|
||||||
const preserveModelSettings = useAtomValue(preserveModelSettingsAtom)
|
|
||||||
const activeThread = useAtomValue(activeThreadAtom)
|
const activeThread = useAtomValue(activeThreadAtom)
|
||||||
|
|
||||||
const experimentalEnabled = useAtomValue(experimentalFeatureEnabledAtom)
|
const experimentalEnabled = useAtomValue(experimentalFeatureEnabledAtom)
|
||||||
@ -80,7 +76,7 @@ export const useCreateNewThread = () => {
|
|||||||
|
|
||||||
const requestCreateNewThread = async (
|
const requestCreateNewThread = async (
|
||||||
assistant: Assistant,
|
assistant: Assistant,
|
||||||
model?: Model | undefined
|
model?: ModelFile | undefined
|
||||||
) => {
|
) => {
|
||||||
// Stop generating if any
|
// Stop generating if any
|
||||||
setIsGeneratingResponse(false)
|
setIsGeneratingResponse(false)
|
||||||
@ -109,19 +105,13 @@ export const useCreateNewThread = () => {
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
settings: assistant.tools && assistant.tools[0].settings,
|
settings: assistant.tools && assistant.tools[0].settings,
|
||||||
}
|
}
|
||||||
const defaultContextLength = preserveModelSettings
|
|
||||||
? defaultModel?.metadata?.default_ctx_len
|
|
||||||
: 2048
|
|
||||||
const defaultMaxTokens = preserveModelSettings
|
|
||||||
? defaultModel?.metadata?.default_max_tokens
|
|
||||||
: 2048
|
|
||||||
const overriddenSettings =
|
const overriddenSettings =
|
||||||
defaultModel?.settings.ctx_len && defaultModel.settings.ctx_len > 2048
|
defaultModel?.settings.ctx_len && defaultModel.settings.ctx_len > 2048
|
||||||
? { ctx_len: defaultContextLength ?? 2048 }
|
? { ctx_len: 4096 }
|
||||||
: {}
|
: {}
|
||||||
|
|
||||||
const overriddenParameters = defaultModel?.parameters.max_tokens
|
const overriddenParameters = defaultModel?.parameters.max_tokens
|
||||||
? { max_tokens: defaultMaxTokens ?? 2048 }
|
? { max_tokens: 4096 }
|
||||||
: {}
|
: {}
|
||||||
|
|
||||||
const createdAt = Date.now()
|
const createdAt = Date.now()
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { useCallback } from 'react'
|
import { useCallback } from 'react'
|
||||||
|
|
||||||
import { ExtensionTypeEnum, ModelExtension, Model } from '@janhq/core'
|
import { ExtensionTypeEnum, ModelExtension, ModelFile } from '@janhq/core'
|
||||||
|
|
||||||
import { useSetAtom } from 'jotai'
|
import { useSetAtom } from 'jotai'
|
||||||
|
|
||||||
@ -13,8 +13,8 @@ export default function useDeleteModel() {
|
|||||||
const removeDownloadedModel = useSetAtom(removeDownloadedModelAtom)
|
const removeDownloadedModel = useSetAtom(removeDownloadedModelAtom)
|
||||||
|
|
||||||
const deleteModel = useCallback(
|
const deleteModel = useCallback(
|
||||||
async (model: Model) => {
|
async (model: ModelFile) => {
|
||||||
await localDeleteModel(model.id)
|
await localDeleteModel(model)
|
||||||
removeDownloadedModel(model.id)
|
removeDownloadedModel(model.id)
|
||||||
toaster({
|
toaster({
|
||||||
title: 'Model Deletion Successful',
|
title: 'Model Deletion Successful',
|
||||||
@ -28,5 +28,7 @@ export default function useDeleteModel() {
|
|||||||
return { deleteModel }
|
return { deleteModel }
|
||||||
}
|
}
|
||||||
|
|
||||||
const localDeleteModel = async (id: string) =>
|
const localDeleteModel = async (model: ModelFile) =>
|
||||||
extensionManager.get<ModelExtension>(ExtensionTypeEnum.Model)?.deleteModel(id)
|
extensionManager
|
||||||
|
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
||||||
|
?.deleteModel(model)
|
||||||
|
|||||||
@ -5,6 +5,7 @@ import {
|
|||||||
Model,
|
Model,
|
||||||
ModelEvent,
|
ModelEvent,
|
||||||
ModelExtension,
|
ModelExtension,
|
||||||
|
ModelFile,
|
||||||
events,
|
events,
|
||||||
} from '@janhq/core'
|
} from '@janhq/core'
|
||||||
|
|
||||||
@ -63,12 +64,12 @@ const getLocalDefaultModel = async (): Promise<Model | undefined> =>
|
|||||||
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
||||||
?.getDefaultModel()
|
?.getDefaultModel()
|
||||||
|
|
||||||
const getLocalConfiguredModels = async (): Promise<Model[]> =>
|
const getLocalConfiguredModels = async (): Promise<ModelFile[]> =>
|
||||||
extensionManager
|
extensionManager
|
||||||
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
||||||
?.getConfiguredModels() ?? []
|
?.getConfiguredModels() ?? []
|
||||||
|
|
||||||
const getLocalDownloadedModels = async (): Promise<Model[]> =>
|
const getLocalDownloadedModels = async (): Promise<ModelFile[]> =>
|
||||||
extensionManager
|
extensionManager
|
||||||
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
||||||
?.getDownloadedModels() ?? []
|
?.getDownloadedModels() ?? []
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { useCallback, useEffect, useState } from 'react'
|
import { useCallback, useEffect, useState } from 'react'
|
||||||
|
|
||||||
import { Model, InferenceEngine } from '@janhq/core'
|
import { Model, InferenceEngine, ModelFile } from '@janhq/core'
|
||||||
|
|
||||||
import { atom, useAtomValue } from 'jotai'
|
import { atom, useAtomValue } from 'jotai'
|
||||||
|
|
||||||
@ -24,12 +24,16 @@ export const LAST_USED_MODEL_ID = 'last-used-model-id'
|
|||||||
*/
|
*/
|
||||||
export default function useRecommendedModel() {
|
export default function useRecommendedModel() {
|
||||||
const activeModel = useAtomValue(activeModelAtom)
|
const activeModel = useAtomValue(activeModelAtom)
|
||||||
const [sortedModels, setSortedModels] = useState<Model[]>([])
|
const [sortedModels, setSortedModels] = useState<ModelFile[]>([])
|
||||||
const [recommendedModel, setRecommendedModel] = useState<Model | undefined>()
|
const [recommendedModel, setRecommendedModel] = useState<
|
||||||
|
ModelFile | undefined
|
||||||
|
>()
|
||||||
const activeThread = useAtomValue(activeThreadAtom)
|
const activeThread = useAtomValue(activeThreadAtom)
|
||||||
const downloadedModels = useAtomValue(downloadedModelsAtom)
|
const downloadedModels = useAtomValue(downloadedModelsAtom)
|
||||||
|
|
||||||
const getAndSortDownloadedModels = useCallback(async (): Promise<Model[]> => {
|
const getAndSortDownloadedModels = useCallback(async (): Promise<
|
||||||
|
ModelFile[]
|
||||||
|
> => {
|
||||||
const models = downloadedModels.sort((a, b) =>
|
const models = downloadedModels.sort((a, b) =>
|
||||||
a.engine !== InferenceEngine.nitro && b.engine === InferenceEngine.nitro
|
a.engine !== InferenceEngine.nitro && b.engine === InferenceEngine.nitro
|
||||||
? 1
|
? 1
|
||||||
|
|||||||
@ -4,8 +4,6 @@ import {
|
|||||||
ConversationalExtension,
|
ConversationalExtension,
|
||||||
ExtensionTypeEnum,
|
ExtensionTypeEnum,
|
||||||
InferenceEngine,
|
InferenceEngine,
|
||||||
Model,
|
|
||||||
ModelExtension,
|
|
||||||
Thread,
|
Thread,
|
||||||
ThreadAssistantInfo,
|
ThreadAssistantInfo,
|
||||||
} from '@janhq/core'
|
} from '@janhq/core'
|
||||||
@ -17,14 +15,8 @@ import {
|
|||||||
extractModelLoadParams,
|
extractModelLoadParams,
|
||||||
} from '@/utils/modelParam'
|
} from '@/utils/modelParam'
|
||||||
|
|
||||||
import useRecommendedModel from './useRecommendedModel'
|
|
||||||
|
|
||||||
import { extensionManager } from '@/extension'
|
import { extensionManager } from '@/extension'
|
||||||
import { preserveModelSettingsAtom } from '@/helpers/atoms/AppConfig.atom'
|
import { selectedModelAtom } from '@/helpers/atoms/Model.atom'
|
||||||
import {
|
|
||||||
selectedModelAtom,
|
|
||||||
updateDownloadedModelAtom,
|
|
||||||
} from '@/helpers/atoms/Model.atom'
|
|
||||||
import {
|
import {
|
||||||
ModelParams,
|
ModelParams,
|
||||||
getActiveThreadModelParamsAtom,
|
getActiveThreadModelParamsAtom,
|
||||||
@ -34,16 +26,14 @@ import {
|
|||||||
export type UpdateModelParameter = {
|
export type UpdateModelParameter = {
|
||||||
params?: ModelParams
|
params?: ModelParams
|
||||||
modelId?: string
|
modelId?: string
|
||||||
|
modelPath?: string
|
||||||
engine?: InferenceEngine
|
engine?: InferenceEngine
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function useUpdateModelParameters() {
|
export default function useUpdateModelParameters() {
|
||||||
const activeModelParams = useAtomValue(getActiveThreadModelParamsAtom)
|
const activeModelParams = useAtomValue(getActiveThreadModelParamsAtom)
|
||||||
const [selectedModel, setSelectedModel] = useAtom(selectedModelAtom)
|
const [selectedModel] = useAtom(selectedModelAtom)
|
||||||
const setThreadModelParams = useSetAtom(setThreadModelParamsAtom)
|
const setThreadModelParams = useSetAtom(setThreadModelParamsAtom)
|
||||||
const updateDownloadedModel = useSetAtom(updateDownloadedModelAtom)
|
|
||||||
const preserveModelFeatureEnabled = useAtomValue(preserveModelSettingsAtom)
|
|
||||||
const { recommendedModel, setRecommendedModel } = useRecommendedModel()
|
|
||||||
|
|
||||||
const updateModelParameter = useCallback(
|
const updateModelParameter = useCallback(
|
||||||
async (thread: Thread, settings: UpdateModelParameter) => {
|
async (thread: Thread, settings: UpdateModelParameter) => {
|
||||||
@ -83,50 +73,8 @@ export default function useUpdateModelParameters() {
|
|||||||
await extensionManager
|
await extensionManager
|
||||||
.get<ConversationalExtension>(ExtensionTypeEnum.Conversational)
|
.get<ConversationalExtension>(ExtensionTypeEnum.Conversational)
|
||||||
?.saveThread(updatedThread)
|
?.saveThread(updatedThread)
|
||||||
|
|
||||||
// Persists default settings to model file
|
|
||||||
// Do not overwrite ctx_len and max_tokens
|
|
||||||
if (preserveModelFeatureEnabled) {
|
|
||||||
const defaultContextLength = settingParams.ctx_len
|
|
||||||
const defaultMaxTokens = runtimeParams.max_tokens
|
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-unused-vars
|
|
||||||
const { ctx_len, ...toSaveSettings } = settingParams
|
|
||||||
// eslint-disable-next-line @typescript-eslint/naming-convention, @typescript-eslint/no-unused-vars
|
|
||||||
const { max_tokens, ...toSaveParams } = runtimeParams
|
|
||||||
|
|
||||||
const updatedModel = {
|
|
||||||
id: settings.modelId ?? selectedModel?.id,
|
|
||||||
parameters: {
|
|
||||||
...toSaveSettings,
|
|
||||||
},
|
},
|
||||||
settings: {
|
[activeModelParams, selectedModel, setThreadModelParams]
|
||||||
...toSaveParams,
|
|
||||||
},
|
|
||||||
metadata: {
|
|
||||||
default_ctx_len: defaultContextLength,
|
|
||||||
default_max_tokens: defaultMaxTokens,
|
|
||||||
},
|
|
||||||
} as Partial<Model>
|
|
||||||
|
|
||||||
const model = await extensionManager
|
|
||||||
.get<ModelExtension>(ExtensionTypeEnum.Model)
|
|
||||||
?.updateModelInfo(updatedModel)
|
|
||||||
if (model) updateDownloadedModel(model)
|
|
||||||
if (selectedModel?.id === model?.id) setSelectedModel(model)
|
|
||||||
if (recommendedModel?.id === model?.id) setRecommendedModel(model)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[
|
|
||||||
activeModelParams,
|
|
||||||
selectedModel,
|
|
||||||
setThreadModelParams,
|
|
||||||
preserveModelFeatureEnabled,
|
|
||||||
updateDownloadedModel,
|
|
||||||
setSelectedModel,
|
|
||||||
recommendedModel,
|
|
||||||
setRecommendedModel,
|
|
||||||
]
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const processStopWords = (params: ModelParams): ModelParams => {
|
const processStopWords = (params: ModelParams): ModelParams => {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { useCallback } from 'react'
|
import { useCallback } from 'react'
|
||||||
|
|
||||||
import { Model } from '@janhq/core'
|
import { ModelFile } from '@janhq/core'
|
||||||
import { Button, Badge, Tooltip } from '@janhq/joi'
|
import { Button, Badge, Tooltip } from '@janhq/joi'
|
||||||
|
|
||||||
import { useAtomValue, useSetAtom } from 'jotai'
|
import { useAtomValue, useSetAtom } from 'jotai'
|
||||||
@ -38,7 +38,7 @@ import {
|
|||||||
} from '@/helpers/atoms/SystemBar.atom'
|
} from '@/helpers/atoms/SystemBar.atom'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
model: Model
|
model: ModelFile
|
||||||
onClick: () => void
|
onClick: () => void
|
||||||
open: string
|
open: string
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { useState } from 'react'
|
import { useState } from 'react'
|
||||||
|
|
||||||
import { Model } from '@janhq/core'
|
import { ModelFile } from '@janhq/core'
|
||||||
import { Badge } from '@janhq/joi'
|
import { Badge } from '@janhq/joi'
|
||||||
|
|
||||||
import { twMerge } from 'tailwind-merge'
|
import { twMerge } from 'tailwind-merge'
|
||||||
@ -12,7 +12,7 @@ import ModelItemHeader from '@/screens/Hub/ModelList/ModelHeader'
|
|||||||
import { toGibibytes } from '@/utils/converter'
|
import { toGibibytes } from '@/utils/converter'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
model: Model
|
model: ModelFile
|
||||||
}
|
}
|
||||||
|
|
||||||
const ModelItem: React.FC<Props> = ({ model }) => {
|
const ModelItem: React.FC<Props> = ({ model }) => {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { useMemo } from 'react'
|
import { useMemo } from 'react'
|
||||||
|
|
||||||
import { Model } from '@janhq/core'
|
import { ModelFile } from '@janhq/core'
|
||||||
|
|
||||||
import { useAtomValue } from 'jotai'
|
import { useAtomValue } from 'jotai'
|
||||||
|
|
||||||
@ -9,16 +9,16 @@ import ModelItem from '@/screens/Hub/ModelList/ModelItem'
|
|||||||
import { downloadedModelsAtom } from '@/helpers/atoms/Model.atom'
|
import { downloadedModelsAtom } from '@/helpers/atoms/Model.atom'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
models: Model[]
|
models: ModelFile[]
|
||||||
}
|
}
|
||||||
|
|
||||||
const ModelList = ({ models }: Props) => {
|
const ModelList = ({ models }: Props) => {
|
||||||
const downloadedModels = useAtomValue(downloadedModelsAtom)
|
const downloadedModels = useAtomValue(downloadedModelsAtom)
|
||||||
const sortedModels: Model[] = useMemo(() => {
|
const sortedModels: ModelFile[] = useMemo(() => {
|
||||||
const featuredModels: Model[] = []
|
const featuredModels: ModelFile[] = []
|
||||||
const remoteModels: Model[] = []
|
const remoteModels: ModelFile[] = []
|
||||||
const localModels: Model[] = []
|
const localModels: ModelFile[] = []
|
||||||
const remainingModels: Model[] = []
|
const remainingModels: ModelFile[] = []
|
||||||
models.forEach((m) => {
|
models.forEach((m) => {
|
||||||
if (m.metadata?.tags?.includes('Featured')) {
|
if (m.metadata?.tags?.includes('Featured')) {
|
||||||
featuredModels.push(m)
|
featuredModels.push(m)
|
||||||
|
|||||||
@ -53,7 +53,7 @@ const ModelDownloadRow: React.FC<Props> = ({
|
|||||||
const { requestCreateNewThread } = useCreateNewThread()
|
const { requestCreateNewThread } = useCreateNewThread()
|
||||||
const setMainViewState = useSetAtom(mainViewStateAtom)
|
const setMainViewState = useSetAtom(mainViewStateAtom)
|
||||||
const assistants = useAtomValue(assistantsAtom)
|
const assistants = useAtomValue(assistantsAtom)
|
||||||
const isDownloaded = downloadedModels.find((md) => md.id === fileName) != null
|
const downloadedModel = downloadedModels.find((md) => md.id === fileName)
|
||||||
|
|
||||||
const setHfImportingStage = useSetAtom(importHuggingFaceModelStageAtom)
|
const setHfImportingStage = useSetAtom(importHuggingFaceModelStageAtom)
|
||||||
const defaultModel = useAtomValue(defaultModelAtom)
|
const defaultModel = useAtomValue(defaultModelAtom)
|
||||||
@ -100,12 +100,12 @@ const ModelDownloadRow: React.FC<Props> = ({
|
|||||||
alert('No assistant available')
|
alert('No assistant available')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
await requestCreateNewThread(assistants[0], model)
|
await requestCreateNewThread(assistants[0], downloadedModel)
|
||||||
setMainViewState(MainViewState.Thread)
|
setMainViewState(MainViewState.Thread)
|
||||||
setHfImportingStage('NONE')
|
setHfImportingStage('NONE')
|
||||||
}, [
|
}, [
|
||||||
assistants,
|
assistants,
|
||||||
model,
|
downloadedModel,
|
||||||
requestCreateNewThread,
|
requestCreateNewThread,
|
||||||
setMainViewState,
|
setMainViewState,
|
||||||
setHfImportingStage,
|
setHfImportingStage,
|
||||||
@ -139,7 +139,7 @@ const ModelDownloadRow: React.FC<Props> = ({
|
|||||||
</Badge>
|
</Badge>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{isDownloaded ? (
|
{downloadedModel ? (
|
||||||
<Button
|
<Button
|
||||||
variant="soft"
|
variant="soft"
|
||||||
className="min-w-[98px]"
|
className="min-w-[98px]"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { memo, useState } from 'react'
|
import { memo, useState } from 'react'
|
||||||
|
|
||||||
import { InferenceEngine, Model } from '@janhq/core'
|
import { InferenceEngine, ModelFile } from '@janhq/core'
|
||||||
import { Badge, Button, Tooltip, useClickOutside } from '@janhq/joi'
|
import { Badge, Button, Tooltip, useClickOutside } from '@janhq/joi'
|
||||||
import { useAtom } from 'jotai'
|
import { useAtom } from 'jotai'
|
||||||
import {
|
import {
|
||||||
@ -21,7 +21,7 @@ import { localEngines } from '@/utils/modelEngine'
|
|||||||
import { serverEnabledAtom } from '@/helpers/atoms/LocalServer.atom'
|
import { serverEnabledAtom } from '@/helpers/atoms/LocalServer.atom'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
model: Model
|
model: ModelFile
|
||||||
groupTitle?: string
|
groupTitle?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user