Spaces:
Runtime error
Runtime error
Uanderson Silva commited on
Commit ·
ecb74fb
1
Parent(s): 2fbd79d
remove fake slither tool
Browse files
src/agents/auditor/tools/slither-tool.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
| 1 |
-
import { tool } from "langchain";
|
| 2 |
-
import { z } from "zod";
|
| 3 |
-
|
| 4 |
-
export const slitherTool = tool(
|
| 5 |
-
async (_input) => {
|
| 6 |
-
return [];
|
| 7 |
-
},
|
| 8 |
-
{
|
| 9 |
-
name: "slither",
|
| 10 |
-
description: "Run slither static analysis on a Solidity contract.",
|
| 11 |
-
schema: z.object({
|
| 12 |
-
solidityFile: z.string().describe("The Solidity source code to analyze."),
|
| 13 |
-
}),
|
| 14 |
-
},
|
| 15 |
-
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|