pub struct RunStepDetailsToolCallsFileSearchResultObject {
pub content: Option<Vec<RunStepDetailsToolCallsFileSearchResultObjectContent>>,
pub file_id: String,
pub file_name: String,
pub score: f32,
}
Fields§
§content: Option<Vec<RunStepDetailsToolCallsFileSearchResultObjectContent>>
The content of the result that was found. The content is only included if requested via the include query parameter.
file_id: String
The ID of the file that result was found in.
file_name: String
The name of the file that result was found in.
score: f32
The score of the result. All values must be a floating point number between 0 and 1.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunStepDetailsToolCallsFileSearchResultObject
impl<'de> Deserialize<'de> for RunStepDetailsToolCallsFileSearchResultObject
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 RunStepDetailsToolCallsFileSearchResultObject
impl RefUnwindSafe for RunStepDetailsToolCallsFileSearchResultObject
impl Send for RunStepDetailsToolCallsFileSearchResultObject
impl Sync for RunStepDetailsToolCallsFileSearchResultObject
impl Unpin for RunStepDetailsToolCallsFileSearchResultObject
impl UnwindSafe for RunStepDetailsToolCallsFileSearchResultObject
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