pub struct EvalStoredCompletionsSource {
pub type: String,
pub metadata: Option<Metadata>,
pub model: Option<String>,
pub created_after: Option<i64>,
pub created_before: Option<i64>,
pub limit: Option<i64>,
}
Expand description
A StoredCompletionsRunDataSource configuration describing a set of filters
Fields§
§type: String
The type of source.
metadata: Option<Metadata>
§model: Option<String>
An optional model to filter by (e.g., ‘gpt-4o’).
created_after: Option<i64>
An optional Unix timestamp to filter items created after this time.
created_before: Option<i64>
An optional Unix timestamp to filter items created before this time.
limit: Option<i64>
An optional maximum number of items to return.
Trait Implementations§
Source§impl Clone for EvalStoredCompletionsSource
impl Clone for EvalStoredCompletionsSource
Source§fn clone(&self) -> EvalStoredCompletionsSource
fn clone(&self) -> EvalStoredCompletionsSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EvalStoredCompletionsSource
impl Debug for EvalStoredCompletionsSource
Source§impl Default for EvalStoredCompletionsSource
impl Default for EvalStoredCompletionsSource
Source§fn default() -> EvalStoredCompletionsSource
fn default() -> EvalStoredCompletionsSource
Returns the “default value” for a type. 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