-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpluginInterface.py
70 lines (47 loc) · 1.38 KB
/
pluginInterface.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
class InputPluginInterface:
input_event_listeners = []
def init(self):
pass
def create_ui(self):
pass
# call this function to send your gathered input to next component
def process_input(self, input: str):
for listener in self.input_event_listeners:
listener(input)
class LLMPluginInterface:
def init(self):
pass
def predict(self, message, history):
raise NotImplementedError
def create_ui(self):
pass
class TranslationPluginInterface:
def init(self):
pass
def translate(self, text):
raise NotImplementedError
# Use the two letter language codes from here: https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes
def get_input_language_code(self):
raise NotImplementedError
def get_output_language_code(self):
raise NotImplementedError
def create_ui(self):
pass
class TTSPluginInterface:
def init(self):
pass
def synthesize(self, text):
raise NotImplementedError
def create_ui(self):
pass
class VtuberPluginInterface:
class AvatarData():
mouth_open = 0
# TODO current emotion, current pheonome etc
avatar_data = AvatarData()
def init(self):
pass
def create_ui(self):
pass
def set_avatar_data(self, data):
self.avatar_data = data