Span types
BaseSpan #
Bases: BaseModel
Base data class representing a span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id_
|
str
|
Id of span. |
'73366462-8135-40cd-92fa-1b19442e2ea2'
|
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 |
|