openai-client-base 0.12.0

Auto-generated Rust client for the OpenAI API
/*
 * OpenAI API
 *
 * The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
 *
 * The version of the OpenAPI document: 2.3.0
 *
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct StaticChunkingStrategyStatic {
    /// The maximum number of tokens in each chunk. The default value is `800`. The minimum value is `100` and the maximum value is `4096`.
    #[serde(rename = "max_chunk_size_tokens")]
    pub max_chunk_size_tokens: i32,
    /// The number of tokens that overlap between chunks. The default value is `400`.  Note that the overlap must not exceed half of `max_chunk_size_tokens`.
    #[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),
        }
    }
}