modelmix 3.6.8 → 3.7.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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -327,7 +327,7 @@ class ModelMix {
|
|
|
327
327
|
config.system += "\n\nOutput JSON Example: \n```\n" + JSON.stringify(schemaExample) + "\n```";
|
|
328
328
|
}
|
|
329
329
|
if (addNote) {
|
|
330
|
-
config.system +=
|
|
330
|
+
config.system += "\n\nOutput JSON Escape: double quotes, backslashes, and control characters inside JSON strings.\nEnsure the output contains no comments.";
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
333
|
const { message } = await this.execute({ options, config });
|