jvcs 1.6.1 → 1.6.2

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.
@@ -1,7 +1,7 @@
1
1
  async function aiAnalyzer({ filePath="", leftContent="", rightContent="", mode=""}) {
2
2
 
3
3
  const { ChatOllama } = await import("@langchain/ollama");
4
-
4
+
5
5
  const llm = new ChatOllama({
6
6
  model: "gpt-oss:120b-cloud",
7
7
  baseUrl: "https://ollama.com",
@@ -23,6 +23,8 @@ async function aiAnalyzer({ filePath="", leftContent="", rightContent="", mode="
23
23
  - Summary of changes
24
24
  - Suggestions or improvements
25
25
  - Risks or bugs introduced
26
+
27
+ Format your response in **Markdown only**. Do NOT use HTML or any other format.
26
28
  `;
27
29
 
28
30
  const response = await llm.invoke(prompt);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jvcs",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "bin": {
5
5
  "jvcs": "index.js"
6
6
  },