Skip to content

Commit

Permalink
fix: projects
Browse files Browse the repository at this point in the history
  • Loading branch information
24rr committed Sep 22, 2024
1 parent b7aa2de commit 6f8fac0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/openai.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use crate::{
assistants::AssistantsApi, audio::AudioApi, client::ClientApi, completion::CompletionsApi,
embeddings::EmbeddingsApi, fine_tuning::FineTuningApi, images::ImagesApi,
moderations::ModerationApi, threads::ThreadsApi, vectors::VectorsApi,
projects::ProjectsApi,
},
};
use reqwest::{multipart::Form, Client};
Expand Down Expand Up @@ -130,4 +131,8 @@ impl<'a> OpenAI<'a> {
pub const fn vectors(&self) -> VectorsApi {
VectorsApi(self)
}

pub const fn projects(&self) -> ProjectsApi {
ProjectsApi(self)
}
}

0 comments on commit 6f8fac0

Please sign in to comment.