use serde::Serialize;
use crate::{
config::Config,
error::OpenAIError,
types::{ListRunStepsResponse, RunStepObject},
Client,
};
pub struct Steps<'c, C: Config> {
pub thread_id: String,
pub run_id: String,
client: &'c Client<C>,
}
impl<'c, C: Config> Steps<'c, C> {
pub fn new(client: &'c Client<C>, thread_id: &str, run_id: &str) -> Self {
Self {
client,
thread_id: thread_id.into(),
run_id: run_id.into(),
}
}
pub async fn retrieve(&self, step_id: &str) -> Result<RunStepObject, OpenAIError> {
self.client
.get(&format!(
"/threads/{}/runs/{}/steps/{step_id}",
self.thread_id, self.run_id
))
.await
}
pub async fn list<Q>(&self, query: &Q) -> Result<ListRunStepsResponse, OpenAIError>
where
Q: Serialize + ?Sized,
{
self.client
.get_with_query(
&format!("/threads/{}/runs/{}/steps", self.thread_id, self.run_id),
query,
)
.await
}
}