* refactor: model plugin to follow new specs Signed-off-by: James <james@jan.ai> * chore: rebase main chore: rebase main --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai>
25 lines
538 B
TypeScript
25 lines
538 B
TypeScript
/**
|
|
* Conversational plugin. Persists and retrieves conversations.
|
|
* @module
|
|
*/
|
|
export { ConversationalPlugin } from "./conversational";
|
|
|
|
/**
|
|
* Inference plugin. Start, stop and inference models.
|
|
*/
|
|
export { InferencePlugin } from "./inference";
|
|
|
|
/**
|
|
* Monitoring plugin for system monitoring.
|
|
*/
|
|
export { MonitoringPlugin } from "./monitoring";
|
|
|
|
/**
|
|
* Assistant plugin for managing assistants.
|
|
*/
|
|
export { AssistantPlugin } from "./assistant";
|
|
|
|
/**
|
|
* Model plugin for managing models.
|
|
*/
|
|
export { ModelPlugin } from "./model"; |