diff --git a/x-pack/plugins/elastic_assistant/server/plugin.ts b/x-pack/plugins/elastic_assistant/server/plugin.ts index 7a092928ce99a..c6d1eaa89a376 100755 --- a/x-pack/plugins/elastic_assistant/server/plugin.ts +++ b/x-pack/plugins/elastic_assistant/server/plugin.ts @@ -52,6 +52,8 @@ export class ElasticAssistantPlugin ) { this.logger.debug('elasticAssistant: Setup'); + // TODO: Remove before merge, this is so the suite will be triggered + this.assistantService = new AIAssistantService({ logger: this.logger.get('service'), ml: plugins.ml, diff --git a/x-pack/test/security_solution_api_integration/test_suites/genai/nlp_cleanup_task/basic_license_essentials_tier/task_execution.ts b/x-pack/test/security_solution_api_integration/test_suites/genai/nlp_cleanup_task/basic_license_essentials_tier/task_execution.ts index 3bcd81df87467..c560c1db035ac 100644 --- a/x-pack/test/security_solution_api_integration/test_suites/genai/nlp_cleanup_task/basic_license_essentials_tier/task_execution.ts +++ b/x-pack/test/security_solution_api_integration/test_suites/genai/nlp_cleanup_task/basic_license_essentials_tier/task_execution.ts @@ -40,7 +40,6 @@ export default ({ getService }: FtrProviderContext): void => { // Make sure the .ml-stats index is created in advance, see https://github.com/elastic/elasticsearch/issues/65846 await ml.api.assureMlStatsIndexExists(); // Create a light-weight model that has a `model_type` of `pytorch` - // TODO: Remove before merge, this is so the suite will be triggered await ml.api.importTrainedModel(TINY_ELSER.name, TINY_ELSER.id); });