mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-27 17:36:23 +02:00
Structured query support (#492)
* Tweak the structured query schema * Structure query service * Gateway support for nlp-query and structured-query * API support * Added CLI * Update tests * More tests
This commit is contained in:
parent
8d4aa0069c
commit
a6d9f5e849
22 changed files with 2813 additions and 31 deletions
|
|
@ -8,10 +8,10 @@ import logging
|
|||
from typing import Dict, Any, Optional, List
|
||||
|
||||
from ...schema import QuestionToStructuredQueryRequest, QuestionToStructuredQueryResponse
|
||||
from ...schema import PromptRequest, PromptResponse
|
||||
from ...schema import PromptRequest
|
||||
from ...schema import Error, RowSchema, Field as SchemaField
|
||||
|
||||
from ...base import FlowProcessor, ConsumerSpec, ProducerSpec, ClientSpec
|
||||
from ...base import FlowProcessor, ConsumerSpec, ProducerSpec, PromptClientSpec
|
||||
|
||||
# Module logger
|
||||
logger = logging.getLogger(__name__)
|
||||
|
|
@ -57,11 +57,9 @@ class Processor(FlowProcessor):
|
|||
|
||||
# Client spec for calling prompt service
|
||||
self.register_specification(
|
||||
ClientSpec(
|
||||
PromptClientSpec(
|
||||
request_name = "prompt-request",
|
||||
response_name = "prompt-response",
|
||||
request_schema = PromptRequest,
|
||||
response_schema = PromptResponse
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
from . service import *
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from . service import run
|
||||
|
||||
run()
|
||||
176
trustgraph-flow/trustgraph/retrieval/structured_query/service.py
Normal file
176
trustgraph-flow/trustgraph/retrieval/structured_query/service.py
Normal file
|
|
@ -0,0 +1,176 @@
|
|||
"""
|
||||
Structured Query Service - orchestrates natural language question processing.
|
||||
Takes a question, converts it to GraphQL via nlp-query, executes via objects-query,
|
||||
and returns the results.
|
||||
"""
|
||||
|
||||
import json
|
||||
import logging
|
||||
from typing import Dict, Any, Optional
|
||||
|
||||
from ...schema import StructuredQueryRequest, StructuredQueryResponse
|
||||
from ...schema import QuestionToStructuredQueryRequest, QuestionToStructuredQueryResponse
|
||||
from ...schema import ObjectsQueryRequest, ObjectsQueryResponse
|
||||
from ...schema import Error
|
||||
|
||||
from ...base import FlowProcessor, ConsumerSpec, ProducerSpec, RequestResponseSpec
|
||||
|
||||
# Module logger
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
default_ident = "structured-query"
|
||||
|
||||
class Processor(FlowProcessor):
|
||||
|
||||
def __init__(self, **params):
|
||||
|
||||
id = params.get("id", default_ident)
|
||||
|
||||
super(Processor, self).__init__(
|
||||
**params | {
|
||||
"id": id,
|
||||
}
|
||||
)
|
||||
|
||||
self.register_specification(
|
||||
ConsumerSpec(
|
||||
name = "request",
|
||||
schema = StructuredQueryRequest,
|
||||
handler = self.on_message
|
||||
)
|
||||
)
|
||||
|
||||
self.register_specification(
|
||||
ProducerSpec(
|
||||
name = "response",
|
||||
schema = StructuredQueryResponse,
|
||||
)
|
||||
)
|
||||
|
||||
# Client spec for calling NLP query service
|
||||
self.register_specification(
|
||||
RequestResponseSpec(
|
||||
request_name = "nlp-query-request",
|
||||
response_name = "nlp-query-response",
|
||||
request_schema = QuestionToStructuredQueryRequest,
|
||||
response_schema = QuestionToStructuredQueryResponse
|
||||
)
|
||||
)
|
||||
|
||||
# Client spec for calling objects query service
|
||||
self.register_specification(
|
||||
RequestResponseSpec(
|
||||
request_name = "objects-query-request",
|
||||
response_name = "objects-query-response",
|
||||
request_schema = ObjectsQueryRequest,
|
||||
response_schema = ObjectsQueryResponse
|
||||
)
|
||||
)
|
||||
|
||||
logger.info("Structured Query service initialized")
|
||||
|
||||
async def on_message(self, msg, consumer, flow):
|
||||
"""Handle incoming structured query request"""
|
||||
|
||||
try:
|
||||
request = msg.value()
|
||||
|
||||
# Sender-produced ID
|
||||
id = msg.properties()["id"]
|
||||
|
||||
logger.info(f"Handling structured query request {id}: {request.question[:100]}...")
|
||||
|
||||
# Step 1: Convert question to GraphQL using NLP query service
|
||||
logger.info("Step 1: Converting question to GraphQL")
|
||||
nlp_request = QuestionToStructuredQueryRequest(
|
||||
question=request.question,
|
||||
max_results=100 # Default limit
|
||||
)
|
||||
|
||||
nlp_response = await self.client("nlp-query-request").request(nlp_request)
|
||||
|
||||
if nlp_response.error is not None:
|
||||
raise Exception(f"NLP query service error: {nlp_response.error.message}")
|
||||
|
||||
if not nlp_response.graphql_query:
|
||||
raise Exception("NLP query service returned empty GraphQL query")
|
||||
|
||||
logger.info(f"Generated GraphQL query: {nlp_response.graphql_query[:200]}...")
|
||||
logger.info(f"Detected schemas: {nlp_response.detected_schemas}")
|
||||
logger.info(f"Confidence: {nlp_response.confidence}")
|
||||
|
||||
# Step 2: Execute GraphQL query using objects query service
|
||||
logger.info("Step 2: Executing GraphQL query")
|
||||
|
||||
# Convert variables to strings (GraphQL variables can be various types, but Pulsar schema expects strings)
|
||||
variables_as_strings = {}
|
||||
if nlp_response.variables:
|
||||
for key, value in nlp_response.variables.items():
|
||||
if isinstance(value, str):
|
||||
variables_as_strings[key] = value
|
||||
else:
|
||||
variables_as_strings[key] = str(value)
|
||||
|
||||
# For now, we'll use default user/collection values
|
||||
# In a real implementation, these would come from authentication/context
|
||||
objects_request = ObjectsQueryRequest(
|
||||
user="default", # TODO: Get from authentication context
|
||||
collection="default", # TODO: Get from request context
|
||||
query=nlp_response.graphql_query,
|
||||
variables=variables_as_strings,
|
||||
operation_name=None
|
||||
)
|
||||
|
||||
objects_response = await self.client("objects-query-request").request(objects_request)
|
||||
|
||||
if objects_response.error is not None:
|
||||
raise Exception(f"Objects query service error: {objects_response.error.message}")
|
||||
|
||||
# Handle GraphQL errors from the objects query service
|
||||
graphql_errors = []
|
||||
if objects_response.errors:
|
||||
for gql_error in objects_response.errors:
|
||||
graphql_errors.append(f"{gql_error.message} (path: {gql_error.path})")
|
||||
|
||||
logger.info("Step 3: Returning results")
|
||||
|
||||
# Create response
|
||||
response = StructuredQueryResponse(
|
||||
error=None,
|
||||
data=objects_response.data or "null", # JSON string
|
||||
errors=graphql_errors
|
||||
)
|
||||
|
||||
logger.info("Sending structured query response...")
|
||||
await flow("response").send(response, properties={"id": id})
|
||||
|
||||
logger.info("Structured query request completed")
|
||||
|
||||
except Exception as e:
|
||||
|
||||
logger.error(f"Exception in structured query service: {e}", exc_info=True)
|
||||
|
||||
logger.info("Sending error response...")
|
||||
|
||||
response = StructuredQueryResponse(
|
||||
error = Error(
|
||||
type = "structured-query-error",
|
||||
message = str(e),
|
||||
),
|
||||
data = "null",
|
||||
errors = []
|
||||
)
|
||||
|
||||
await flow("response").send(response, properties={"id": id})
|
||||
|
||||
@staticmethod
|
||||
def add_args(parser):
|
||||
"""Add command-line arguments"""
|
||||
|
||||
FlowProcessor.add_args(parser)
|
||||
|
||||
# No additional arguments needed for this orchestrator service
|
||||
|
||||
def run():
|
||||
"""Entry point for structured-query command"""
|
||||
Processor.launch(default_ident, __doc__)
|
||||
Loading…
Add table
Add a link
Reference in a new issue