* @janhq/plugin-core module * refactor web to use exported services from module * refactor data-plugin to provide DAL & move model logics to model management plugin * model-management in TS * add ci auto package, increate version, and publish to npm repository * chore: storage operations * chore: hybrid data-plugin esm & cjs module * chore: PouchDB Driver * chore: documentation --------- Co-authored-by: Hien To <hien@jan.ai> Co-authored-by: Service Account <service@jan.ai>
66 lines
823 B
TypeScript
66 lines
823 B
TypeScript
import { ProductType } from "./Product";
|
|
|
|
/**
|
|
* Represent a model
|
|
*/
|
|
export type AssistantModel = {
|
|
/**
|
|
* Combination of owner and model name.
|
|
* Being used as file name. MUST be unique.
|
|
*/
|
|
_id: string;
|
|
|
|
name: string;
|
|
|
|
quantMethod: string;
|
|
|
|
bits: number;
|
|
|
|
size: number;
|
|
|
|
maxRamRequired: number;
|
|
|
|
usecase: string;
|
|
|
|
downloadLink: string;
|
|
|
|
/**
|
|
* For tracking download info
|
|
*/
|
|
startDownloadAt?: number;
|
|
|
|
finishDownloadAt?: number;
|
|
|
|
productId: string;
|
|
|
|
productName: string;
|
|
|
|
shortDescription: string;
|
|
|
|
longDescription: string;
|
|
|
|
avatarUrl: string;
|
|
|
|
author: string;
|
|
|
|
version: string;
|
|
|
|
modelUrl: string;
|
|
|
|
nsfw: boolean;
|
|
|
|
greeting: string;
|
|
|
|
type: ProductType;
|
|
|
|
createdAt: number;
|
|
|
|
updatedAt?: number;
|
|
|
|
status: string;
|
|
|
|
releaseDate: number;
|
|
|
|
tags: string[];
|
|
};
|