Parameters
The LangChain component to annotate (modified in place).
Arbitrary key-value attributes. Keys matching known
FiddlerSpanAttributes values are set directly; all others are
prefixed with fiddler.span.user..Returns
None Example: default from langchain_openai import ChatOpenAI from fiddler_langgraph import add_span_attributes llm = ChatOpenAI(model=“gpt-4”) add_span_attributes(llm, model_tier=“premium”, use_case=“summarization”)