From 25ea7406d06d1450f7eb82eb21fd8dacb87c637f Mon Sep 17 00:00:00 2001 From: ruwinirathnamalala Date: Wed, 24 Jun 2026 12:22:43 +0530 Subject: [PATCH] LLM indexing afeter service status update to active --- DSL/Ruuter/services/POST/services/status.yml | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/DSL/Ruuter/services/POST/services/status.yml b/DSL/Ruuter/services/POST/services/status.yml index c1c5c0d8b..0f1d2e8de 100644 --- a/DSL/Ruuter/services/POST/services/status.yml +++ b/DSL/Ruuter/services/POST/services/status.yml @@ -194,6 +194,27 @@ activate_all_mcq_services: keyword: "${name}_" format: "yml" result: active_move_results + next: call_llm_enrich + +call_llm_enrich: + call: http.post + args: + url: "[#LLM_RUUTER_PUBLIC]/services/enrich" + body: + service_id: ${id} + name: ${name} + description: ${service_data_result.response.body[0].description} + examples: ${service_data_result.response.body[0].examples} + entities: ${service_data_result.response.body[0].entities} + ruuter_type: ${ruuter_type} + current_state: ${new_state} + is_common: ${service_data_result.response.body[0].isCommon} + result: llm_enrich_result + error: llm_enrich_error + next: return_ok + +llm_enrich_error: + log: "Error occurred while calling LLM enrich service for service id: ${id}" next: return_ok deactivate_service: