querysub 0.388.0 → 0.389.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/package.json
CHANGED
|
@@ -203,6 +203,8 @@ Please provide a SHORT search string that would match this type of error. The st
|
|
|
203
203
|
|
|
204
204
|
DO NOT include variables. If something is some dynamic path that includes numbers, etc., definitely do not include that in the match pattern. That is a very, very bad match pattern.
|
|
205
205
|
|
|
206
|
+
The string must be exactly included. You can't stitch together pieces, it will be checked for with .includes() in javascript.
|
|
207
|
+
|
|
206
208
|
Respond with a JSON object with a "pattern" field containing the search string.`;
|
|
207
209
|
|
|
208
210
|
const response = await callOpenRouterJSON<PatternResponse>(openRouterAPIKey, prompt);
|