chore: fix biome issues

This commit is contained in:
2026-04-14 17:00:51 +05:30
parent 2e0093025f
commit 08500bb7c8
5 changed files with 13 additions and 14 deletions
+1 -2
View File
@@ -4,7 +4,6 @@
*/
import { DynamicStructuredTool } from "@langchain/core/tools";
// @ts-ignore - graphology type issue
import type Graph from "graphology";
import { z } from "zod";
@@ -20,7 +19,7 @@ const graphExplorerSchema = z.object({
* Creates the graph explorer tool.
* @param graph - Graphology graph instance
*/
// @ts-ignore - Graph type issue
// @ts-expect-error - Graph type issue
export function createGraphExplorerTool(graph: Graph) {
return new DynamicStructuredTool({
name: "ask262_graph_explorer",