Class: ImageNode<T>
TextNode is the default node type for text. Most common node type in LlamaIndex.TS
Extends
TextNode
<T
>
Extended by
Type parameters
• T extends Metadata
= Metadata
Constructors
new ImageNode()
new ImageNode<
T
>(init
):ImageNode
<T
>
Parameters
• init: ImageNodeParams
<T
>
Returns
ImageNode
<T
>
Overrides
Source
Properties
embedding?
optional
embedding:number
[]
Inherited from
Source
endCharIdx?
optional
endCharIdx:number
Inherited from
Source
excludedEmbedMetadataKeys
excludedEmbedMetadataKeys:
string
[]
Inherited from
TextNode
. excludedEmbedMetadataKeys
Source
excludedLlmMetadataKeys
excludedLlmMetadataKeys:
string
[]
Inherited from
TextNode
. excludedLlmMetadataKeys
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
image
image:
ImageType
Source
metadata
metadata:
T
Inherited from
Source
metadataSeparator
metadataSeparator:
string
Inherited from
Source
relationships
relationships:
Partial
<Record
<NodeRelationship
,RelatedNodeType
<T
>>>
Inherited from
Source
startCharIdx?
optional
startCharIdx:number
Inherited from
Source
text
text:
string
Inherited from
Source
textTemplate
textTemplate:
string
Inherited from
Source
Accessors
childNodes
get
childNodes():undefined
|RelatedNodeInfo
<T
>[]
Returns
undefined
| RelatedNodeInfo
<T
>[]
Source
hash
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
type
get
type():ObjectType
Returns
Source
Methods
asRelatedNodeInfo()
asRelatedNodeInfo():
RelatedNodeInfo
<T
>
Returns
Inherited from
Source
clone()
Returns
Inherited from
Source
generateHash()
generateHash():
string
Generate a hash of the text node. The ID is not part of the hash as it can change independent of content.
Returns
string
Overrides
Source
generateImageHash()
private
generateImageHash():string
Returns
string
Source
getContent()
getContent(
metadataMode
):string
Parameters
• metadataMode: MetadataMode
= MetadataMode.NONE
Returns
string
Inherited from
Source
getEmbedding()
getEmbedding():
number
[]
Returns
number
[]
Inherited from
Source
getMetadataStr()
getMetadataStr(
metadataMode
):string
Parameters
• metadataMode: MetadataMode
Returns
string
Inherited from
Source
getNodeInfo()
getNodeInfo():
object
Returns
object
end
end:
undefined
|number
start
start:
undefined
|number
Inherited from
Source
getText()
getText():
string
Returns
string
Inherited from
Source
getUrl()
getUrl():
URL
Returns
URL
Source
setContent()
setContent(
value
):void
Parameters
• value: string
Returns
void
Inherited from
Source
toJSON()
toJSON():
Record
<string
,any
>
Called by built in JSON.stringify (see https://javascript.info/json) Properties are read-only as they are not deep-cloned (not necessary for stringification).
Returns
Record
<string
, any
>
Inherited from
See
toMutableJSON - use to return a mutable JSON instead
Source
toMutableJSON()
toMutableJSON():
Record
<string
,any
>
Converts the object to a JSON representation. Properties can be safely modified as a deep clone of the properties are created.
Returns
Record
<string
, any
>
- The JSON representation of the object.