From 1069a0d98709e8a2e4fc47425b554d2a83ce2660 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Wed, 3 Dec 2025 13:25:24 +0000 Subject: [PATCH] Switch prompt name to the original prompt --- trustgraph-flow/trustgraph/extract/kg/ontology/extract.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trustgraph-flow/trustgraph/extract/kg/ontology/extract.py b/trustgraph-flow/trustgraph/extract/kg/ontology/extract.py index 54f0903a..335f07d2 100644 --- a/trustgraph-flow/trustgraph/extract/kg/ontology/extract.py +++ b/trustgraph-flow/trustgraph/extract/kg/ontology/extract.py @@ -368,9 +368,9 @@ class Processor(FlowProcessor): List of Triple objects """ try: - # Call prompt service with new simplified format prompt + # Call prompt service with simplified format prompt extraction_response = await flow("prompt-request").prompt( - id="extract-with-ontologies-v2", + id="extract-with-ontologies", variables=prompt_variables ) logger.debug(f"Simplified extraction response: {extraction_response}")