pub struct ExportOptions {
pub format: TrainingFormat,
pub quality_threshold: f32,
pub include_metadata: bool,
}Expand description
Options controlling how traces are exported.
Fields§
§format: TrainingFormatTarget output format.
quality_threshold: f32Minimum score [0.0, 1.0] a trace must have to be included.
Traces with score < quality_threshold are filtered out.
include_metadata: boolWhen true, per-record metadata (model, temperature proxy, eval case
ID, timestamp) is included in the exported records.
Implementations§
Source§impl ExportOptions
impl ExportOptions
Trait Implementations§
Source§impl Clone for ExportOptions
impl Clone for ExportOptions
Source§fn clone(&self) -> ExportOptions
fn clone(&self) -> ExportOptions
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 ExportOptions
impl Debug for ExportOptions
Auto Trait Implementations§
impl Freeze for ExportOptions
impl RefUnwindSafe for ExportOptions
impl Send for ExportOptions
impl Sync for ExportOptions
impl Unpin for ExportOptions
impl UnsafeUnpin for ExportOptions
impl UnwindSafe for ExportOptions
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