Span types
BaseSpan #
Bases: BaseModel
Base data class representing a span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id_
|
str
|
Id of span. |
'48244f4a-f4ce-4293-b0ea-07c458ad7d66'
|
parent_id
|
str | None
|
Id of parent span. |
None
|
tags
|
Dict[str, Any]
|
|
{}
|
Source code in llama_index_instrumentation/span/base.py
7 8 9 10 11 12 13 |
|