Class: TextNode<T>
TextNode is the default node type for text. Most common node type in LlamaIndex.TS
Extends
BaseNode
<T
>
Extended by
Type parameters
• T extends Metadata
= Metadata
Constructors
new TextNode()
new TextNode<
T
>(init
?):TextNode
<T
>
Parameters
• init?: Partial
<TextNode
<T
>>
Returns
TextNode
<T
>
Overrides
Source
Properties
embedding?
optional
embedding:number
[]
Inherited from
Source
endCharIdx?
optional
endCharIdx:number
Source
excludedEmbedMetadataKeys
excludedEmbedMetadataKeys:
string
[] =[]
Inherited from
BaseNode
. excludedEmbedMetadataKeys
Source
excludedLlmMetadataKeys
excludedLlmMetadataKeys:
string
[] =[]
Inherited from
BaseNode
. excludedLlmMetadataKeys
Source
hash
hash:
string
=""
Inherited from
Source
id_
id_:
string
The unique ID of the Node/Document. The trailing underscore is here to avoid collisions with the id keyword in Python.
Set to a UUID by default.
Inherited from
Source
metadata
metadata:
T
Inherited from
Source
metadataSeparator
metadataSeparator:
string
="\n"
Source
relationships
relationships:
Partial
<Record
<NodeRelationship
,RelatedNodeType
<T
>>> ={}
Inherited from
Source
startCharIdx?
optional
startCharIdx:number
Source
text
text:
string
=""
Source
textTemplate
textTemplate:
string
=""
Source
Accessors
childNodes
get
childNodes():undefined
|RelatedNodeInfo
<T
>[]
Returns
undefined
| RelatedNodeInfo
<T
>[]
Source
nextNode
get
nextNode():undefined
|RelatedNodeInfo
<T
>
Returns
undefined
| RelatedNodeInfo
<T
>
Source
parentNode
get
parentNode():undefined
|RelatedNodeInfo
<T
>
Returns
undefined
| RelatedNodeInfo
<T
>
Source
prevNode
get
prevNode():undefined
|RelatedNodeInfo
<T
>
Returns
undefined
| RelatedNodeInfo
<T
>
Source
sourceNode
get
sourceNode():undefined
|RelatedNodeInfo
<T
>
Returns
undefined
| RelatedNodeInfo
<T
>
Source
Methods
asRelatedNodeInfo()
asRelatedNodeInfo():
RelatedNodeInfo
<T
>