Compiling llmrust v0.1.0 (D:\halowor\llmrust)
error[E0433]: failed to resolve: use of undeclared type `OpenAIProvider`
--> src\providers\compat.rs:1235:52
|
1235 | let provider: Arc<dyn Provider> = Arc::new(OpenAIProvider::new(config));
| ^^^^^^^^^^^^^^ use of undeclared type `OpenAIProvider`
|
help: consider importing this struct through its public re-export
|
671 + use crate::OpenAIProvider;
|
For more information about this error, try `rustc --explain E0433`.
error: could not compile `llmrust` (lib test) due to 1 previous error