I’m working with LangGraph’s prebuilt create_react_agent and using LangSmith for tracing. I invoke my workflow like this:
result = await workflow.ainvoke(agent_input, config=config)
As expected, I can view the following in the trace:
- LangGraph node executions
- Tool calls and their inputs/outputs
- Overall agent flow
However I wanted to know if there’s any way to get visibility into the RunnableConfig object that’s being passed through the workflow
Questions:
- Does LangSmith currently capture config state in traces?
- If not natively supported, are there recommended patterns for logging config at key points (e.g., custom callbacks, middleware)?