Spaces:
Runtime error
Runtime error
| from __future__ import annotations | |
| import json | |
| from pathlib import Path | |
| def test_langgraph_config_exports_ergo_assessment_graph(): | |
| config = json.loads(Path("langgraph.json").read_text()) | |
| assert config["graphs"]["ergo_assessment"] == ( | |
| "./src/ergo_agentic/studio.py:graph" | |
| ) | |
| assert config["dependencies"] == ["."] | |
| def test_studio_graph_imports(): | |
| from ergo_agentic.studio import graph | |
| assert graph is not None | |