mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
Flow management API + various flow management commands trustgraph-cli/scripts/tg-delete-flow-class trustgraph-cli/scripts/tg-get-flow-class trustgraph-cli/scripts/tg-put-flow-class trustgraph-cli/scripts/tg-show-flow-classes trustgraph-cli/scripts/tg-show-flows trustgraph-cli/scripts/tg-start-flow trustgraph-cli/scripts/tg-stop-flow
66 lines
1.5 KiB
Python
66 lines
1.5 KiB
Python
|
|
from pulsar.schema import Record, Bytes, String, Boolean, Array, Map, Integer
|
|
|
|
from . topic import topic
|
|
from . types import Error
|
|
|
|
############################################################################
|
|
|
|
# Flow service:
|
|
# list_classes() -> (classname[])
|
|
# get_class(classname) -> (class)
|
|
# put_class(class) -> (class)
|
|
# delete_class(classname) -> ()
|
|
#
|
|
# list_flows() -> (flowid[])
|
|
# get_flow(flowid) -> (flow)
|
|
# start_flow(flowid, classname) -> ()
|
|
# stop_flow(flowid) -> ()
|
|
|
|
# Prompt services, abstract the prompt generation
|
|
class FlowRequest(Record):
|
|
|
|
operation = String() # list-classes, get-class, put-class, delete-class
|
|
# list-flows, get-flow, start-flow, stop-flow
|
|
|
|
# get_class, put_class, delete_class, start_flow
|
|
class_name = String()
|
|
|
|
# put_class
|
|
class_definition = String()
|
|
|
|
# start_flow
|
|
description = String()
|
|
|
|
# get_flow, start_flow, stop_flow
|
|
flow_id = String()
|
|
|
|
class FlowResponse(Record):
|
|
|
|
# list_classes
|
|
class_names = Array(String())
|
|
|
|
# list_flows
|
|
flow_ids = Array(String())
|
|
|
|
# get_class
|
|
class_definition = String()
|
|
|
|
# get_flow
|
|
flow = String()
|
|
|
|
# get_flow
|
|
description = String()
|
|
|
|
# Everything
|
|
error = Error()
|
|
|
|
flow_request_queue = topic(
|
|
'flow', kind='non-persistent', namespace='request'
|
|
)
|
|
flow_response_queue = topic(
|
|
'flow', kind='non-persistent', namespace='response'
|
|
)
|
|
|
|
############################################################################
|
|
|