Update test & description

This commit is contained in:
William Fu-Hinthorn
2025-05-14 06:53:07 -07:00
parent cd1003d7b5
commit f5cd30ad3c
4 changed files with 20 additions and 6 deletions

View File

@@ -2,8 +2,11 @@ import pytest
from agent import graph
pytestmark = pytest.mark.anyio
@pytest.mark.langsmith
async def test_agent_simple_passthrough() -> None:
res = await graph.ainvoke({"changeme": "some_val"})
inputs = {"changeme": "some_val"}
res = await graph.ainvoke(inputs)
assert res is not None