@balpal4495/quorum 3.8.0 → 3.8.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.
- package/bin/mcp/tools.js +3 -2
- package/bin/ui/app.html +0 -4
- package/package.json +1 -1
package/bin/mcp/tools.js
CHANGED
|
@@ -287,8 +287,9 @@ export async function toolAdvisor({ question, projectRoot } = {}) {
|
|
|
287
287
|
const { createLanceDBStore } = await import("../../dist/oracle/adapters/lance-db.js")
|
|
288
288
|
|
|
289
289
|
const store = await createLanceDBStore(chronicleDir)
|
|
290
|
-
const oracle = createOracleClient({ store,
|
|
291
|
-
const
|
|
290
|
+
const oracle = createOracleClient({ vectorStore: store, embedder: xenovaEmbed })
|
|
291
|
+
const evidence = await oracle.query(question)
|
|
292
|
+
const result = await ask({ question, evidence }, { llm: _llm })
|
|
292
293
|
return result
|
|
293
294
|
}
|
|
294
295
|
|
package/bin/ui/app.html
CHANGED
|
@@ -838,10 +838,6 @@
|
|
|
838
838
|
<button onclick="showTab('check')">Check</button>
|
|
839
839
|
<button onclick="showTab('ingest')">Ingest</button>
|
|
840
840
|
<button onclick="showTab('sentinel')">Sentinel</button>
|
|
841
|
-
<button onclick="showTab('advisor')">Advisor</button>
|
|
842
|
-
<button onclick="showTab('check')">Check</button>
|
|
843
|
-
<button onclick="showTab('ingest')">Ingest</button>
|
|
844
|
-
<button onclick="showTab('sentinel')">Sentinel</button>
|
|
845
841
|
</nav>
|
|
846
842
|
</header>
|
|
847
843
|
|