9 lines
207 B
Rust
9 lines
207 B
Rust
pub mod completion;
|
|
pub mod embedding;
|
|
pub mod model;
|
|
|
|
pub use completion::*;
|
|
pub use embedding::*;
|
|
pub use model::OpenAILanguageModel;
|
|
|
|
pub const OPENAI_API_URL: &'static str = "https://api.openai.com/v1";
|