10 lines
223 B
Python
10 lines
223 B
Python
from langgraph.pregel import Pregel
|
|
|
|
from agent.graph import graph
|
|
|
|
|
|
def test_placeholder() -> None:
|
|
# TODO: You can add actual unit tests
|
|
# for your graph and other logic here.
|
|
assert isinstance(graph, Pregel)
|