File size: 1,200 Bytes
e1c08c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
    "plugin-name": "DeepMoji Plugin",
    "author": "Pendrokar",
    "nexus-link": "https://www.nexusmods.com/skyrimspecialedition/mods/107142",
    "plugin-version": "0.9.0",
    "plugin-short-description": "Analyses and adjusts emotional modifiers.",
    "min-app-version": "3.0.0",
    "install-requires-restart": false,
    "uninstall-requires-restart": false,

    "front-end-style-files": [],

    "front-end-hooks": {
        "start": {
            "post": {
                "file": "options.js",
                "function": "setupSettings"
            }
        }
    },
    "back-end-hooks": {
        "load-model": {
            "pre": {
                "file": "sentiment.py",
                "function": "pre_load_model"
            }
        },
        "batch-synth-line": {
            "pre": {
                "file": "sentiment.py",
                "function": "fetch_text_batch"
            }
        },
        "synth-line": {
            "pre": {
                "file": "sentiment.py",
                "function": "fetch_text"
            },
            "mid": {
                "file": "sentiment.py",
                "function": "adjust_values"
            }
        }
    }
}