Struct swiftide_core::indexing::Node
source · pub struct Node {
pub id: Option<u64>,
pub path: PathBuf,
pub chunk: String,
pub vectors: Option<HashMap<EmbeddedField, Embedding>>,
pub sparse_vectors: Option<HashMap<EmbeddedField, SparseEmbedding>>,
pub metadata: Metadata,
pub embed_mode: EmbedMode,
pub original_size: usize,
pub offset: usize,
}
Expand description
Represents a unit of data in the indexing process.
Node
encapsulates all necessary information for a single unit of data being processed
in the indexing pipeline. It includes fields for an identifier, file path, data chunk, optional
vector representation, and metadata.
Fields§
§id: Option<u64>
Optional identifier for the node.
path: PathBuf
File path associated with the node.
chunk: String
Data chunk contained in the node.
vectors: Option<HashMap<EmbeddedField, Embedding>>
Optional vector representation of embedded data.
sparse_vectors: Option<HashMap<EmbeddedField, SparseEmbedding>>
Optional sparse vector representation of embedded data.
metadata: Metadata
Metadata associated with the node.
embed_mode: EmbedMode
Mode of embedding data Chunk and Metadata
original_size: usize
Size of the input this node was originally derived from in bytes
offset: usize
Offset of the chunk relative to the start of the input this node was originally derived from in bytes
Implementations§
source§impl Node
impl Node
sourcepub fn new(chunk: impl Into<String>) -> Node
pub fn new(chunk: impl Into<String>) -> Node
Creates a new instance of Node
with the specified data chunk.
The other fields are set to their default values.
sourcepub fn as_embeddables(&self) -> Vec<(EmbeddedField, String)>
pub fn as_embeddables(&self) -> Vec<(EmbeddedField, String)>
Creates embeddable data depending on chosen EmbedMode
.
§Returns
Embeddable data mapped to their EmbeddedField
.
sourcepub fn calculate_hash(&self) -> u64
pub fn calculate_hash(&self) -> u64
Calculates a hash value for the node based on its path and chunk.
The hash value is calculated using the default hasher provided by the standard library.
§Returns
A 64-bit hash value representing the node.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Hash for Node
impl Hash for Node
impl StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more