Span types
BaseSpan #
Bases: BaseModel
Base data class representing a span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id_
|
str
|
Id of span. |
'03d2be03-11f8-46f5-a9fa-74265462467c'
|
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 |
|