pub struct AutoChunkingStrategyRequestParam {
pub _type: String,
}
Expand description
§on openapi.yaml
AutoChunkingStrategyRequestParam:
type: object
title: Auto Chunking Strategy
description: The default strategy. This strategy currently uses a
`max_chunk_size_tokens` of `800` and `chunk_overlap_tokens` of `400`.
additionalProperties: false
properties:
type:
type: string
description: Always `auto`.
enum:
- auto
x-stainless-const: true
required:
- type
Fields§
§_type: String
Always auto
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AutoChunkingStrategyRequestParam
impl<'de> Deserialize<'de> for AutoChunkingStrategyRequestParam
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AutoChunkingStrategyRequestParam
impl RefUnwindSafe for AutoChunkingStrategyRequestParam
impl Send for AutoChunkingStrategyRequestParam
impl Sync for AutoChunkingStrategyRequestParam
impl Unpin for AutoChunkingStrategyRequestParam
impl UnwindSafe for AutoChunkingStrategyRequestParam
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
Mutably borrows from an owned value. Read more