Skip to content

Commit 6c062a2

Browse files
committed
format
1 parent d58d92b commit 6c062a2

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/eval/eval.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import OpenAI from "openai";
22
import { zodToJsonSchema } from "zod-to-json-schema";
3-
import {
4-
GetTestsTool,
5-
GetTestEntitiesTool,
6-
} from "../operations/tests.js";
3+
import { GetTestsTool, GetTestEntitiesTool } from "../operations/tests.js";
74
import {
85
GetFrameworksTool,
96
GetFrameworkControlsTool,

src/operations/tests.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ export async function getTestEntities(
7979
};
8080
}
8181

82-
8382
const TOOL_DESCRIPTION = `Retrieve Vanta's automated security and compliance tests. Vanta runs 1,200+ automated tests continuously to monitor compliance across your infrastructure. Filter by status (OK, NEEDS_ATTENTION, DEACTIVATED), cloud integration (aws, azure, gcp), or compliance framework (soc2, iso27001, hipaa). Returns test results showing which security controls are passing or failing across your infrastructure. Tests that are NOT_APPLICABLE to your resources are included by default - use statusFilter=NEEDS_ATTENTION to retrieve only actionable failing tests.`;
8483

8584
const TEST_STATUS_FILTER_DESCRIPTION = `Filter tests by their status.
@@ -135,4 +134,3 @@ export const GetTestEntitiesTool: Tool<typeof GetTestEntitiesInput> = {
135134
description: `Get the specific failing resources (entities) for a known test ID. Use this when you already know the test name/ID and need to see which specific infrastructure resources are failing that test. For example, if you know "aws-security-groups-open-to-world" test is failing, this returns the actual security group IDs that are failing. Requires a specific testId parameter. Do NOT use this for general test discovery - use get_tests for that.`,
136135
parameters: GetTestEntitiesInput,
137136
};
138-

0 commit comments

Comments
 (0)