use crate::{
config::Config,
error::OpenAIError,
types::responses::{
ConversationItem, ConversationItemList, ConversationResource,
CreateConversationItemsRequest,
},
Client, RequestOptions,
};
pub struct ConversationItems<'c, C: Config> {
client: &'c Client<C>,
pub conversation_id: String,
pub(crate) request_options: RequestOptions,
}
impl<'c, C: Config> ConversationItems<'c, C> {
pub fn new(client: &'c Client<C>, conversation_id: &str) -> Self {
Self {
client,
conversation_id: conversation_id.into(),
request_options: RequestOptions::new(),
}
}
#[crate::byot(T0 = serde::Serialize, R = serde::de::DeserializeOwned)]
pub async fn create(
&self,
request: CreateConversationItemsRequest,
) -> Result<ConversationItemList, OpenAIError> {
self.client
.post(
&format!("/conversations/{}/items", &self.conversation_id),
request,
&self.request_options,
)
.await
}
#[crate::byot(R = serde::de::DeserializeOwned)]
pub async fn list(&self) -> Result<ConversationItemList, OpenAIError> {
self.client
.get(
&format!("/conversations/{}/items", &self.conversation_id),
&self.request_options,
)
.await
}
#[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)]
pub async fn retrieve(&self, item_id: &str) -> Result<ConversationItem, OpenAIError> {
self.client
.get(
&format!("/conversations/{}/items/{item_id}", &self.conversation_id),
&self.request_options,
)
.await
}
#[crate::byot(T0 = std::fmt::Display, R = serde::de::DeserializeOwned)]
pub async fn delete(&self, item_id: &str) -> Result<ConversationResource, OpenAIError> {
self.client
.delete(
&format!("/conversations/{}/items/{item_id}", &self.conversation_id),
&self.request_options,
)
.await
}
}