* chore: update core services and module export * Correct version of plugins (#374) Co-authored-by: Hien To <tominhhien97@gmail.com> * janhq/jan: Update tag build 1.0.2 for data-plugin * janhq/jan: Update tag build 1.0.2 for inference-plugin * janhq/jan: Update tag build 1.0.2 for model-management-plugin * janhq/jan: Update tag build 1.0.2 for monitoring-plugin * janhq/jan: Update tag build 1.0.2 for openai-plugin * chore: update web to use @janhq/core module --------- Co-authored-by: hiento09 <136591877+hiento09@users.noreply.github.com> Co-authored-by: Hien To <tominhhien97@gmail.com> Co-authored-by: Service Account <service@jan.ai>
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import { executeSerial } from "@/_services/pluginService";
|
|
import { InferenceService } from "@janhq/core";
|
|
import { useAtom } from "jotai";
|
|
import { activeAssistantModelAtom } from "@/_helpers/atoms/Model.atom";
|
|
import { AssistantModel } from "@/_models/AssistantModel";
|
|
|
|
export default function useInitModel() {
|
|
const [activeModel, setActiveModel] = useAtom(activeAssistantModelAtom);
|
|
|
|
const initModel = async (model: AssistantModel) => {
|
|
if (activeModel && activeModel._id === model._id) {
|
|
console.debug(`Model ${model._id} is already init. Ignore..`);
|
|
return;
|
|
}
|
|
|
|
const currentTime = Date.now();
|
|
console.debug("Init model: ", model._id);
|
|
|
|
const res = await executeSerial(InferenceService.InitModel, model._id);
|
|
if (res?.error) {
|
|
console.log("error occured: ", res);
|
|
return res;
|
|
} else {
|
|
console.debug(
|
|
`Init model successfully!, take ${Date.now() - currentTime}ms`
|
|
);
|
|
setActiveModel(model);
|
|
return {};
|
|
}
|
|
};
|
|
|
|
return { initModel };
|
|
}
|