collincunn
Results
2
comments of
collincunn
Not @lucasboscatti but I was able to reproduce when wrapping PydanticAI in langgraph. ```{python} import os from typing import TypedDict from langgraph.graph import StateGraph, START, END import logfire from pydantic_ai...
Not on the Opik team, but below is a fix. This can be fixed by wrapping everything in a single span: ``` ... with logfire.span("langgraph_workflow"): result = app.invoke({"messages": []}) ```...