Span types
BaseSpan #
Bases: BaseModel
Base data class representing a span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id_
|
str
|
Id of span. |
'f8fa2082-2e6a-44aa-bca5-75c2b1ac24e1'
|
parent_id
|
str | None
|
Id of parent span. |
None
|
tags
|
Dict[str, Any]
|
|
{}
|
Source code in llama-index-core/llama_index/core/instrumentation/span/base.py
6 7 8 9 10 11 12 |
|