forked from xiangsx/gpt4free-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
30 lines (25 loc) · 749 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import {Chat, ChatOptions} from "./base";
import {You} from "./you";
import {Forefront} from "./forefront";
export enum Model {
// define new model here
You = 'you',
Forefront = 'forefront',
}
export class ChatModelFactory {
private modelMap: Map<Model, Chat>;
private readonly options: ChatOptions | undefined;
constructor(options?: ChatOptions) {
this.modelMap = new Map();
this.options = options;
this.init();
}
init() {
// register new model here
this.modelMap.set(Model.You, new You(this.options))
this.modelMap.set(Model.Forefront, new Forefront(this.options))
}
get(model: Model): Chat | undefined {
return this.modelMap.get(model);
}
}