mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 08:26:21 +02:00
19 lines
305 B
Text
19 lines
305 B
Text
|
|
#!/usr/bin/env python3
|
||
|
|
|
||
|
|
import pulsar
|
||
|
|
from trustgraph.clients.prompt_client import PromptClient
|
||
|
|
|
||
|
|
p = PromptClient(pulsar_host="pulsar://localhost:6650")
|
||
|
|
|
||
|
|
question = """What is the square root of 16?"""
|
||
|
|
|
||
|
|
resp = p.request(
|
||
|
|
id="question",
|
||
|
|
terms = {
|
||
|
|
"question": question
|
||
|
|
}
|
||
|
|
)
|
||
|
|
|
||
|
|
print(resp)
|
||
|
|
|