Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get span attributes from a Model or AgentTool object.
from strands.models.openai import OpenAIModel from fiddler_strandsagents import get_span_attributes, set_span_attributes model = OpenAIModel(api_key="...", model_id="gpt-4o") set_span_attributes(model, model_tier="premium", use_case="summarization") attrs = get_span_attributes(model) print(attrs) # {"model_tier": "premium", "use_case": "summarization"}
Was this page helpful?