mirror of
https://github.com/langchain-ai/agent-inbox-langgraph-example.git
synced 2026-07-01 20:44:06 -04:00
5f4ae0a56f
(Remove react agent code)
12 lines
229 B
Python
12 lines
229 B
Python
import pytest
|
|
from langsmith import unit
|
|
|
|
from agent import graph
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@unit
|
|
async def test_agent_simple_passthrough() -> None:
|
|
res = await graph.ainvoke({"changeme": "some_val"})
|
|
assert res is not None
|