fix(core): update

This commit is contained in:
2024-04-04 02:47:44 +02:00
parent a636556fdb
commit 04d505d29e
13 changed files with 335 additions and 39 deletions

View File

@@ -1,5 +1,12 @@
export abstract class MultiModal {
export abstract class MultiModalModel {
/**
* starts the model
*/
abstract start(): Promise<void>;
/**
* stops the model
*/
abstract stop(): Promise<void>;
// Defines a streaming interface for chat interactions.