-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Security solution] naturalLanguageToEsql
Tool added to default assistant graph
#192042
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
5f4d328
proof
stephmilovic 5f8ba1b
Merge branch 'main' into nl_to_esql_siem_2
stephmilovic 7881215
add feature flag
stephmilovic 2441e20
revert one spot
stephmilovic 5bebe12
[CI] Auto-commit changed files from 'node scripts/lint_ts_projects --…
kibanamachine 62e72b3
fix types
stephmilovic 10a87ff
fix type
stephmilovic a97fee4
Merge branch 'main' into nl_to_esql_siem_2
stephmilovic 7330c3b
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine dd40a8b
Merge branch 'main' into nl_to_esql_siem_2
elasticmachine cc06eab
Merge branch 'main' into nl_to_esql_siem_2
stephmilovic 96ae4eb
Merge branch 'main' into nl_to_esql_siem_2
elasticmachine 340649c
fix prompt
stephmilovic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
"ml", | ||
"taskManager", | ||
"licensing", | ||
"inference", | ||
"spaces", | ||
"security" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ | |
"@kbn/apm-utils", | ||
"@kbn/std", | ||
"@kbn/zod", | ||
"@kbn/inference-plugin" | ||
], | ||
"exclude": [ | ||
"target/**/*", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
.../security_solution/server/assistant/tools/esql_language_knowledge_base/nl_to_esql_tool.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { DynamicStructuredTool } from '@langchain/core/tools'; | ||
import { z } from '@kbn/zod'; | ||
import type { AssistantTool, AssistantToolParams } from '@kbn/elastic-assistant-plugin/server'; | ||
import { lastValueFrom } from 'rxjs'; | ||
import { naturalLanguageToEsql } from '@kbn/inference-plugin/server'; | ||
import { APP_UI_ID } from '../../../../common'; | ||
|
||
export type ESQLToolParams = AssistantToolParams; | ||
|
||
const TOOL_NAME = 'NaturalLanguageESQLTool'; | ||
|
||
const toolDetails = { | ||
id: 'nl-to-esql-tool', | ||
name: TOOL_NAME, | ||
description: `You MUST use the "${TOOL_NAME}" function when the user wants to: | ||
- run any arbitrary query | ||
- breakdown or filter ES|QL queries that are displayed on the current page | ||
- convert queries from another language to ES|QL | ||
- asks general questions about ES|QL | ||
|
||
DO NOT UNDER ANY CIRCUMSTANCES generate ES|QL queries or explain anything about the ES|QL query language yourself. | ||
DO NOT UNDER ANY CIRCUMSTANCES try to correct an ES|QL query yourself - always use the "${TOOL_NAME}" function for this. | ||
|
||
Even if the "${TOOL_NAME}" function was used before that, follow it up with the "${TOOL_NAME}" function. If a query fails, do not attempt to correct it yourself. Again you should call the "${TOOL_NAME}" function, | ||
even if it has been called before.`, | ||
}; | ||
|
||
export const NL_TO_ESQL_TOOL: AssistantTool = { | ||
...toolDetails, | ||
sourceRegister: APP_UI_ID, | ||
isSupported: (params: ESQLToolParams): params is ESQLToolParams => { | ||
const { chain, isEnabledKnowledgeBase, modelExists } = params; | ||
return isEnabledKnowledgeBase && modelExists && chain != null; | ||
}, | ||
getTool(params: ESQLToolParams) { | ||
if (!this.isSupported(params)) return null; | ||
|
||
const { connectorId, inference, logger, request } = params as ESQLToolParams; | ||
if (inference == null || connectorId == null) return null; | ||
|
||
const callNaturalLanguageToEsql = async (question: string) => { | ||
return lastValueFrom( | ||
naturalLanguageToEsql({ | ||
client: inference.getClient({ request }), | ||
connectorId, | ||
input: question, | ||
logger: { | ||
debug: (source) => { | ||
logger.debug(typeof source === 'function' ? source() : source); | ||
}, | ||
}, | ||
}) | ||
); | ||
}; | ||
|
||
return new DynamicStructuredTool({ | ||
name: toolDetails.name, | ||
description: toolDetails.description, | ||
schema: z.object({ | ||
question: z.string().describe(`The user's exact question about ESQL`), | ||
}), | ||
func: async (input) => { | ||
const generateEvent = await callNaturalLanguageToEsql(input.question); | ||
const answer = generateEvent.content ?? 'An error occurred in the tool'; | ||
|
||
logger.debug(`Received response from NL to ESQL tool: ${answer}`); | ||
return answer; | ||
}, | ||
tags: ['esql', 'query-generation', 'knowledge-base'], | ||
// TODO: Remove after ZodAny is fixed https://github.com/langchain-ai/langchainjs/blob/main/langchain-core/src/tools.ts | ||
}) as unknown as DynamicStructuredTool; | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: consider making
naturalLanguageESQLToolEnabled
optional and default tofalse