pub struct EvalStoredCompletionsSource {
pub created_after: Option<i32>,
pub created_before: Option<i32>,
pub limit: Option<i32>,
pub metadata: Option<Metadata>,
pub model: Option<String>,
pub _type: String,
}
Fields§
§created_after: Option<i32>
An optional Unix timestamp to filter items created after this time.
created_before: Option<i32>
An optional Unix timestamp to filter items created before this time.
limit: Option<i32>
An optional maximum number of items to return.
metadata: Option<Metadata>
§model: Option<String>
An optional model to filter by (e.g., ‘gpt-4o’).
_type: String
The type of source. Always stored_completions
.
Trait Implementations§
Source§impl Debug for EvalStoredCompletionsSource
impl Debug for EvalStoredCompletionsSource
Source§impl<'de> Deserialize<'de> for EvalStoredCompletionsSource
impl<'de> Deserialize<'de> for EvalStoredCompletionsSource
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 EvalStoredCompletionsSource
impl RefUnwindSafe for EvalStoredCompletionsSource
impl Send for EvalStoredCompletionsSource
impl Sync for EvalStoredCompletionsSource
impl Unpin for EvalStoredCompletionsSource
impl UnwindSafe for EvalStoredCompletionsSource
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