-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASLM_Module.json
More file actions
161 lines (161 loc) · 4.96 KB
/
Copy pathASLM_Module.json
File metadata and controls
161 lines (161 loc) · 4.96 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"fileVersion": 1,
"id": "aslm-code",
"name": "ASLM Code",
"description": "ASLM Code Module",
"version": "0.1.3.5",
"author": "NEXTGGTECH",
"type": "ui",
"category": [
"code"
],
"hasPage": true,
"icon": "icon.png",
"sidebarIcon": "sidebar_icon.png",
"source": {
"type": "github",
"repo": "NEXTGGTECH/ASLM-Code"
},
"update": {
"mode": "release",
"channel": "release",
"branch": "main",
"preserve": [
"Data/venvs",
"Data/uploads",
"Settings/settings.json",
"Skills",
"MCP/mcp.json",
"db.sqlite3"
],
"runFirstRunAfterUpdate": true
},
"dependencies": {
"engines": [
{
"id": "python-runtime",
"libraries": [
"virtualenv"
]
}
],
"modules": [
{
"id": "aslm-chat"
}
]
},
"commands": {
"firstRun": [
{
"name": "First Run Setup",
"description": "Generates settings.json and applies database migrations",
"engine": "python-runtime",
"exec": "main.py first_run"
}
],
"run": [
{
"name": "UI Server",
"description": "Launches the Django development server",
"engine": "python-runtime",
"exec": "main.py runserver"
}
]
},
"settings": [
{
"key": "ui-port",
"name": "UI Server Port",
"description": "Port the UI server listens on",
"type": "port",
"default": 20000,
"engine": "python-runtime",
"getExec": "main.py get_setting --key ui-port",
"setExec": "main.py set_setting --key ui-port --value {value}"
},
{
"key": "api-port",
"name": "API Server Port",
"description": "Port the UI server listens on",
"type": "port",
"default": 20001,
"engine": "python-runtime",
"getExec": "main.py get_setting --key api-port",
"setExec": "main.py set_setting --key api-port --value {value}"
},
{
"key": "aslm-host-theme",
"name": "ASLM host theme",
"description": "Theme snapshot from the host ASLM app; applied on each module start. Managed only by ASLM.",
"type": "theme",
"engine": "python-runtime",
"setExec": "main.py apply_aslm_host_theme --file {value}"
},
{
"key": "aslm-host-locale",
"name": "ASLM host locale",
"description": "Language snapshot from the host ASLM app; applied on each module start. Managed only by ASLM.",
"type": "locale",
"engine": "python-runtime",
"setExec": "main.py apply_aslm_locale --file {value}"
},
{
"key": "console_log_level",
"name": "Console Log Level",
"description": "How much runtime detail ASLM-Code prints into the ASLM console.",
"type": "select",
"default": "debug",
"allowedValues": [
"basic",
"debug",
"trace"
],
"engine": "python-runtime",
"getExec": "main.py get_setting --key console_log_level",
"setExec": "main.py set_setting --key console_log_level --value {value}"
},
{
"key": "llm-engine",
"name": "Active LLM Engine",
"description": "Engine used for chat generation (resolved via ASLM-Chat)",
"type": "select",
"default": "aslm-chat",
"allowedValues": [
"aslm-chat"
],
"engine": "python-runtime",
"getExec": "main.py get_setting --key llm-engine",
"setExec": "main.py set_setting --key llm-engine --value {value}",
"value": "aslm-chat"
},
{
"key": "llm-sub-engine",
"name": "ASLM-Chat Backend",
"description": "Backend engine used inside ASLM-Chat",
"type": "select",
"default": "ollama-service",
"allowedValues": [
"ollama-service",
"lms",
"openai",
"google-genai"
],
"engine": "python-runtime",
"getExec": "main.py get_setting --key llm-sub-engine",
"setExec": "main.py set_setting --key llm-sub-engine --value {value}",
"value": "ollama-service"
}
],
"moduleInterop": {
"protocolVersion": 1,
"client": {
"enabled": true
}
},
"status": {
"installed": false,
"enabled": false,
"firstRunCompleted": false
}
}