Span types
BaseSpan #
Bases: BaseModel
Base data class representing a span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id_
|
str
|
Id of span. |
'bea0a24c-a718-4353-8262-1271b62099cd'
|
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 |
|