// SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. // SPDX-License-Identifier: Apache-2.0 // // Based on https://github.com/64bit/async-openai/ by Himanshu Neema // Original Copyright (c) 2022 Himanshu Neema // Licensed under MIT License (see ATTRIBUTIONS-Rust.md) // // Modifications Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. // Licensed under Apache 2.0 use serde::Serialize; use crate::{ Client, config::Config, error::OpenAIError, types::{ListRunStepsResponse, RunStepObject}, }; /// Represents a step in execution of a run. pub struct Steps<'c, C: Config> { pub thread_id: String, pub run_id: String, client: &'c Client, } impl<'c, C: Config> Steps<'c, C> { pub fn new(client: &'c Client, thread_id: &str, run_id: &str) -> Self { Self { client, thread_id: thread_id.into(), run_id: run_id.into(), } } /// Retrieves a run step. #[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)] pub async fn retrieve(&self, step_id: &str) -> Result { self.client .get(&format!( "/threads/{}/runs/{}/steps/{step_id}", self.thread_id, self.run_id )) .await } /// Returns a list of run steps belonging to a run. #[crate::byot(T0 = serde::Serialize, R = serde::de::DeserializeOwned)] pub async fn list(&self, query: &Q) -> Result where Q: Serialize + ?Sized, { self.client .get_with_query( &format!("/threads/{}/runs/{}/steps", self.thread_id, self.run_id), &query, ) .await } }