use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct StaticChunkingStrategyStatic {
#[serde(rename = "max_chunk_size_tokens")]
pub max_chunk_size_tokens: i32,
#[serde(rename = "chunk_overlap_tokens")]
pub chunk_overlap_tokens: i32,
}
impl StaticChunkingStrategyStatic {
pub fn new(
max_chunk_size_tokens: i32,
chunk_overlap_tokens: i32,
) -> StaticChunkingStrategyStatic {
StaticChunkingStrategyStatic {
max_chunk_size_tokens,
chunk_overlap_tokens,
}
}
}
impl std::fmt::Display for StaticChunkingStrategyStatic {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match serde_json::to_string(self) {
Ok(s) => write!(f, "{}", s),
Err(_) => Err(std::fmt::Error),
}
}
}