chore: add facades refactor: core module export refactor: inference plugin - deprecate function registering (#537) * refactor: revamp inference plugin as class - deprecate function registering * refactor: monitoring plugin - deprecate service registering (#538) refactor: revamp inference plugin as class - deprecate function registering chore: update import refactor: plugin revamp - model management chore: update build steps and remove experimental plugins refactor: remove pluggable electron chore: add sorting for conversations chore: build plugins for testing chore: consistent plugin directory name chore: docs chore: fix CI chore: update conversation prefix
31 lines
953 B
TypeScript
31 lines
953 B
TypeScript
import { ModelCatalog, ModelVersion } from '@janhq/core/lib/types'
|
|
|
|
export const dummyModel: ModelCatalog = {
|
|
_id: 'aladar/TinyLLama-v0-GGUF',
|
|
name: 'TinyLLama-v0-GGUF',
|
|
shortDescription: 'TinyLlama-1.1B-Chat-v0.3-GGUF',
|
|
longDescription: 'https://huggingface.co/aladar/TinyLLama-v0-GGUF/tree/main',
|
|
avatarUrl: '',
|
|
status: '',
|
|
releaseDate: Date.now(),
|
|
author: 'aladar',
|
|
version: '1.0.0',
|
|
modelUrl: 'aladar/TinyLLama-v0-GGUF',
|
|
tags: ['freeform', 'tags'],
|
|
createdAt: 0,
|
|
availableVersions: [
|
|
{
|
|
_id: 'tinyllama-1.1b-chat-v0.3.Q2_K.gguf',
|
|
name: 'tinyllama-1.1b-chat-v0.3.Q2_K.gguf',
|
|
quantMethod: '',
|
|
bits: 2,
|
|
size: 19660000,
|
|
maxRamRequired: 256000000,
|
|
usecase:
|
|
'smallest, significant quality loss - not recommended for most purposes',
|
|
downloadLink:
|
|
'https://huggingface.co/aladar/TinyLLama-v0-GGUF/resolve/main/TinyLLama-v0.f32.gguf',
|
|
} as ModelVersion,
|
|
],
|
|
}
|