-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
19 lines (15 loc) · 784 Bytes
/
__init__.py
File metadata and controls
19 lines (15 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from .PromtTemplate import PromptTemplateJson, PromptTemplateKeyValue, PromptTemplateGetManyRandomTemplates
WEB_DIRECTORY = "./web"
NODE_CLASS_MAPPINGS = {
"PromptTemplateJson": PromptTemplateJson,
"PromptTemplateJsonConstructor": PromptTemplateJson,
"PromptTemplateKeyValue": PromptTemplateKeyValue,
"PromptTemplateGetManyRandomTemplates":PromptTemplateGetManyRandomTemplates
}
NODE_DISPLAY_NAME_MAPPINGS = {
"PromptTemplateJson": "MIM Prompt Template Json",
"PromptTemplateKeyValue": "MIM Prompt Template Key Value",
"PromptTemplateJsonConstructor": "MIM Prompt Template Constructor",
"PromptTemplateGetManyRandomTemplates": "MIM Prompt Get Random Templates",
}
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]