trustgraph/tests/test-graph-rag
Cyber MacGeddon 7a607bf90d Keep 2 tests
2024-08-07 19:10:26 +01:00

15 lines
311 B
Python
Executable file

#!/usr/bin/env python3
import pulsar
from trustgraph.graph_rag_client import GraphRagClient
rag = GraphRagClient(pulsar_host="pulsar://localhost:6650")
query="""
Identify any facts which provide an explanation of the explosion of the
space shuttle rocket boosters"""
resp = rag.request(query)
print(resp)