mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
knowledge service (#367)
* Write knowledge core elements to Cassandra * Store service works, building management service * kg-manager
This commit is contained in:
parent
d0da122bed
commit
807c19fd22
24 changed files with 1196 additions and 243 deletions
39
test-api/test-knowledge-fetch
Executable file
39
test-api/test-knowledge-fetch
Executable file
|
|
@ -0,0 +1,39 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import requests
|
||||
import json
|
||||
import sys
|
||||
import base64
|
||||
import time
|
||||
|
||||
url = "http://localhost:8088/api/v1/"
|
||||
|
||||
############################################################################
|
||||
|
||||
input = {
|
||||
"operation": "fetch-kg-core",
|
||||
"id": "https://trustgraph.ai/doc/intelligence-and-state",
|
||||
"user": "trustgraph",
|
||||
}
|
||||
|
||||
resp = requests.post(
|
||||
f"{url}knowledge",
|
||||
json=input,
|
||||
)
|
||||
|
||||
print(resp.text)
|
||||
resp = resp.json()
|
||||
|
||||
print(resp)
|
||||
|
||||
if "error" in resp:
|
||||
print(f"Error: {resp['error']}")
|
||||
sys.exit(1)
|
||||
|
||||
# print(resp["response"])
|
||||
print(resp)
|
||||
|
||||
sys.exit(0)
|
||||
|
||||
############################################################################
|
||||
|
||||
50
test-api/test-knowledge-fetch2
Executable file
50
test-api/test-knowledge-fetch2
Executable file
|
|
@ -0,0 +1,50 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import requests
|
||||
import asyncio
|
||||
import json
|
||||
import sys
|
||||
import base64
|
||||
import time
|
||||
from websockets.asyncio.client import connect
|
||||
|
||||
url = "ws://localhost:8088/api/v1/socket"
|
||||
|
||||
############################################################################
|
||||
|
||||
async def run():
|
||||
|
||||
async with connect(url) as ws:
|
||||
|
||||
req = {
|
||||
"id": "aa11",
|
||||
"service": "knowledge",
|
||||
"request": {
|
||||
"operation": "fetch-kg-core",
|
||||
"user": "trustgraph",
|
||||
"id": "https://trustgraph.ai/doc/intelligence-and-state"
|
||||
}
|
||||
}
|
||||
|
||||
await ws.send(json.dumps(req))
|
||||
|
||||
while True:
|
||||
|
||||
msg = await ws.recv()
|
||||
obj = json.loads(msg)
|
||||
|
||||
print(obj)
|
||||
|
||||
if "error" in obj:
|
||||
print(f"Error: {obj['error']}")
|
||||
break
|
||||
|
||||
if "response" not in obj: continue
|
||||
|
||||
if "eos" in obj["response"]:
|
||||
if obj["response"]["eos"]:
|
||||
break
|
||||
|
||||
############################################################################
|
||||
|
||||
asyncio.run(run())
|
||||
38
test-api/test-knowledge-list
Executable file
38
test-api/test-knowledge-list
Executable file
|
|
@ -0,0 +1,38 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import requests
|
||||
import json
|
||||
import sys
|
||||
import base64
|
||||
import time
|
||||
|
||||
url = "http://localhost:8088/api/v1/"
|
||||
|
||||
############################################################################
|
||||
|
||||
input = {
|
||||
"operation": "list-kg-cores",
|
||||
"user": "trustgraph",
|
||||
}
|
||||
|
||||
resp = requests.post(
|
||||
f"{url}knowledge",
|
||||
json=input,
|
||||
)
|
||||
|
||||
print(resp.text)
|
||||
resp = resp.json()
|
||||
|
||||
print(resp)
|
||||
|
||||
if "error" in resp:
|
||||
print(f"Error: {resp['error']}")
|
||||
sys.exit(1)
|
||||
|
||||
# print(resp["response"])
|
||||
print(resp)
|
||||
|
||||
sys.exit(0)
|
||||
|
||||
############################################################################
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue