29 lines
798 B
Gherkin
29 lines
798 B
Gherkin
Feature: LangGraph RxPy Integration
|
|
As a developer using CleverAgents
|
|
I want to use LangGraph as RxPy operators
|
|
So that I can integrate graphs into reactive streams
|
|
|
|
Background:
|
|
Given the CleverAgents reactive system is available with LangGraph support
|
|
|
|
Scenario: LangGraph as RxPy operator
|
|
Given I have created the simple_graph
|
|
And I have a stream configuration with LangGraph operator:
|
|
"""
|
|
{
|
|
"name": "graph_stream",
|
|
"type": "cold",
|
|
"operators": [
|
|
{
|
|
"type": "graph_execute",
|
|
"params": {
|
|
"graph": "simple_graph"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
"""
|
|
When I create the stream
|
|
And I send a message to the stream
|
|
Then the message should be processed by the LangGraph
|