libre-webui 0.6.3 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -1
- package/backend/dist/db.d.ts.map +1 -1
- package/backend/dist/db.js +17 -0
- package/backend/dist/db.js.map +1 -1
- package/backend/dist/routes/auth.js +2 -2
- package/backend/dist/routes/auth.js.map +1 -1
- package/backend/dist/routes/ollama.d.ts.map +1 -1
- package/backend/dist/routes/ollama.js +40 -0
- package/backend/dist/routes/ollama.js.map +1 -1
- package/backend/dist/routes/plugins.d.ts.map +1 -1
- package/backend/dist/routes/plugins.js +162 -0
- package/backend/dist/routes/plugins.js.map +1 -1
- package/backend/dist/services/authService.d.ts +1 -1
- package/backend/dist/services/authService.d.ts.map +1 -1
- package/backend/dist/services/authService.js +1 -1
- package/backend/dist/services/authService.js.map +1 -1
- package/backend/dist/services/ollamaService.d.ts +2 -0
- package/backend/dist/services/ollamaService.d.ts.map +1 -1
- package/backend/dist/services/ollamaService.js +31 -0
- package/backend/dist/services/ollamaService.js.map +1 -1
- package/backend/dist/services/pluginService.d.ts +9 -0
- package/backend/dist/services/pluginService.d.ts.map +1 -1
- package/backend/dist/services/pluginService.js +99 -24
- package/backend/dist/services/pluginService.js.map +1 -1
- package/backend/dist/services/pluginVariablesService.d.ts +36 -0
- package/backend/dist/services/pluginVariablesService.d.ts.map +1 -0
- package/backend/dist/services/pluginVariablesService.js +218 -0
- package/backend/dist/services/pluginVariablesService.js.map +1 -0
- package/backend/dist/types/index.d.ts +14 -0
- package/backend/dist/types/index.d.ts.map +1 -1
- package/backend/dist/types/index.js.map +1 -1
- package/frontend/dist/assets/index-B4PmhQ5N.js +51 -0
- package/frontend/dist/css/{index-wpq7d2po.css → index-D9uKnbHR.css} +1 -1
- package/frontend/dist/index.html +4 -4
- package/frontend/dist/js/{ArtifactContainer-3CkpcYwD.js → ArtifactContainer-CnO8nWfm.js} +2 -2
- package/frontend/dist/js/{ArtifactDemoPage-oSYi__50.js → ArtifactDemoPage-m4dZIjIM.js} +1 -1
- package/frontend/dist/js/{ChatPage-Cz0C9idF.js → ChatPage-BkvB6a5u.js} +15 -15
- package/frontend/dist/js/{GalleryPage-cCtfDEU2.js → GalleryPage-C6V5NU58.js} +1 -1
- package/frontend/dist/js/ModelsPage-BGbYUYAI.js +1 -0
- package/frontend/dist/js/{PersonasPage-5vnLrOBA.js → PersonasPage-567IlJm4.js} +1 -1
- package/frontend/dist/js/{UserManagementPage-BSrxERfr.js → UserManagementPage-DBm-9utt.js} +1 -1
- package/frontend/dist/js/{ui-vendor-mY5_zojY.js → ui-vendor-DxZsuKzb.js} +1 -1
- package/frontend/dist/js/{utils-vendor-DBPpO82s.js → utils-vendor-0Ymd3GFQ.js} +2 -2
- package/package.json +2 -1
- package/plugins/anthropic.json +74 -13
- package/plugins/comfyui.json +45 -4
- package/plugins/elevenlabs.json +42 -2
- package/plugins/gemini.json +106 -45
- package/plugins/github.json +72 -11
- package/plugins/groq.json +74 -13
- package/plugins/huggingface.json +93 -6
- package/plugins/kyutai-tts-1.6b.json +76 -14
- package/plugins/kyutai-tts.json +32 -3
- package/plugins/mistral.json +122 -61
- package/plugins/openai-tts.json +38 -3
- package/plugins/openai.json +81 -3
- package/plugins/openrouter.json +402 -341
- package/plugins/qwen-tts.json +33 -3
- package/frontend/dist/assets/index-DUg4kgBT.js +0 -51
- package/frontend/dist/js/ModelsPage-CPrYNnp9.js +0 -1
package/plugins/openai-tts.json
CHANGED
|
@@ -26,13 +26,48 @@
|
|
|
26
26
|
"gpt-4o-mini-tts-2025-12-15"
|
|
27
27
|
],
|
|
28
28
|
"config": {
|
|
29
|
-
"voices": [
|
|
29
|
+
"voices": [
|
|
30
|
+
"alloy",
|
|
31
|
+
"ash",
|
|
32
|
+
"coral",
|
|
33
|
+
"echo",
|
|
34
|
+
"fable",
|
|
35
|
+
"onyx",
|
|
36
|
+
"nova",
|
|
37
|
+
"sage",
|
|
38
|
+
"shimmer"
|
|
39
|
+
],
|
|
30
40
|
"default_voice": "alloy",
|
|
31
|
-
"formats": [
|
|
41
|
+
"formats": [
|
|
42
|
+
"mp3",
|
|
43
|
+
"opus",
|
|
44
|
+
"aac",
|
|
45
|
+
"flac",
|
|
46
|
+
"wav",
|
|
47
|
+
"pcm"
|
|
48
|
+
],
|
|
32
49
|
"default_format": "mp3",
|
|
33
50
|
"max_characters": 4096,
|
|
34
51
|
"supports_streaming": true
|
|
35
52
|
}
|
|
36
53
|
}
|
|
37
|
-
}
|
|
54
|
+
},
|
|
55
|
+
"variables": [
|
|
56
|
+
{
|
|
57
|
+
"name": "endpoint",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"label": "API Endpoint",
|
|
60
|
+
"description": "Override the default API endpoint URL.",
|
|
61
|
+
"default": "https://api.openai.com/v1/audio/speech"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "speed",
|
|
65
|
+
"type": "number",
|
|
66
|
+
"label": "Speed",
|
|
67
|
+
"description": "Playback speed multiplier.",
|
|
68
|
+
"default": 1,
|
|
69
|
+
"min": 0.25,
|
|
70
|
+
"max": 4
|
|
71
|
+
}
|
|
72
|
+
]
|
|
38
73
|
}
|
package/plugins/openai.json
CHANGED
|
@@ -120,13 +120,91 @@
|
|
|
120
120
|
"gpt-4o-mini-tts-2025-12-15"
|
|
121
121
|
],
|
|
122
122
|
"config": {
|
|
123
|
-
"voices": [
|
|
123
|
+
"voices": [
|
|
124
|
+
"alloy",
|
|
125
|
+
"ash",
|
|
126
|
+
"coral",
|
|
127
|
+
"echo",
|
|
128
|
+
"fable",
|
|
129
|
+
"onyx",
|
|
130
|
+
"nova",
|
|
131
|
+
"sage",
|
|
132
|
+
"shimmer"
|
|
133
|
+
],
|
|
124
134
|
"default_voice": "alloy",
|
|
125
|
-
"formats": [
|
|
135
|
+
"formats": [
|
|
136
|
+
"mp3",
|
|
137
|
+
"opus",
|
|
138
|
+
"aac",
|
|
139
|
+
"flac",
|
|
140
|
+
"wav",
|
|
141
|
+
"pcm"
|
|
142
|
+
],
|
|
126
143
|
"default_format": "mp3",
|
|
127
144
|
"max_characters": 4096,
|
|
128
145
|
"supports_streaming": true
|
|
129
146
|
}
|
|
130
147
|
}
|
|
131
|
-
}
|
|
148
|
+
},
|
|
149
|
+
"variables": [
|
|
150
|
+
{
|
|
151
|
+
"name": "endpoint",
|
|
152
|
+
"type": "string",
|
|
153
|
+
"label": "API Endpoint",
|
|
154
|
+
"description": "Override the default API endpoint URL.",
|
|
155
|
+
"default": "https://api.openai.com/v1/chat/completions"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "temperature",
|
|
159
|
+
"type": "number",
|
|
160
|
+
"label": "Temperature",
|
|
161
|
+
"description": "Controls randomness. Lower values are more focused, higher values more creative.",
|
|
162
|
+
"default": 0.7,
|
|
163
|
+
"min": 0,
|
|
164
|
+
"max": 2
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "max_tokens",
|
|
168
|
+
"type": "number",
|
|
169
|
+
"label": "Max Tokens",
|
|
170
|
+
"description": "Maximum number of tokens to generate in the response.",
|
|
171
|
+
"default": 4096,
|
|
172
|
+
"min": 1,
|
|
173
|
+
"max": 128000
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "top_p",
|
|
177
|
+
"type": "number",
|
|
178
|
+
"label": "Top P",
|
|
179
|
+
"description": "Nucleus sampling. Lower values make output more focused.",
|
|
180
|
+
"default": 1,
|
|
181
|
+
"min": 0,
|
|
182
|
+
"max": 1
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "frequency_penalty",
|
|
186
|
+
"type": "number",
|
|
187
|
+
"label": "Frequency Penalty",
|
|
188
|
+
"description": "Reduces repetition of frequent tokens.",
|
|
189
|
+
"default": 0,
|
|
190
|
+
"min": -2,
|
|
191
|
+
"max": 2
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "presence_penalty",
|
|
195
|
+
"type": "number",
|
|
196
|
+
"label": "Presence Penalty",
|
|
197
|
+
"description": "Encourages the model to talk about new topics.",
|
|
198
|
+
"default": 0,
|
|
199
|
+
"min": -2,
|
|
200
|
+
"max": 2
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "stream",
|
|
204
|
+
"type": "boolean",
|
|
205
|
+
"label": "Stream Response",
|
|
206
|
+
"description": "Stream the response token by token.",
|
|
207
|
+
"default": true
|
|
208
|
+
}
|
|
209
|
+
]
|
|
132
210
|
}
|