@kolbo/mcp 1.86.3 → 1.87.0
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 +4 -0
- package/package.json +1 -1
- package/src/apps/widgets/upload.js +456 -457
- package/src/tools/chat.js +3 -1
- package/src/tools/media.js +656 -656
- package/src/tools/models.js +3 -0
package/src/tools/models.js
CHANGED
|
@@ -192,6 +192,9 @@ function registerModelTools(server, client, options = {}) {
|
|
|
192
192
|
// model says no, and absence means the API doesn't expose the field.
|
|
193
193
|
const formatSpecs = m => {
|
|
194
194
|
const parts = [];
|
|
195
|
+
if (m.haveThinking && Array.isArray(m.thinkingLevels) && m.thinkingLevels.length) {
|
|
196
|
+
parts.push(`thinking_level: ${m.thinkingLevels.map(level => level.id).join('/')} (default ${m.thinkingDefault})`);
|
|
197
|
+
}
|
|
195
198
|
const types = Array.isArray(m.types) ? m.types : [];
|
|
196
199
|
const isVideoType = types.some(t =>
|
|
197
200
|
['text_to_video', 'img_to_video', 'video_to_video', 'elements',
|