Improve local evidence search and AI capabilities
This commit is contained in:
@@ -99,6 +99,13 @@ async function main() {
|
||||
}),
|
||||
});
|
||||
});
|
||||
await page.route("**/api/hermes/client/capabilities**", async (route) => {
|
||||
await route.fulfill({
|
||||
status: 200,
|
||||
headers: { "content-type": "application/json" },
|
||||
body: JSON.stringify({ ok: true, runtime: "mnote", categories: [], archived: [] }),
|
||||
});
|
||||
});
|
||||
await page.route("**/api/hermes/client/skills/toggle", async (route) => {
|
||||
skillToggleBodies.push(JSON.parse(route.request().postData() || "{}"));
|
||||
await route.fulfill({
|
||||
|
||||
Reference in New Issue
Block a user