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
=""