llmrust 0.1.1

Unified Rust interface for 7 LLM providers (OpenAI, Anthropic, DeepSeek, Google Gemini, Ollama, Moonshot, OpenRouter) with HTTP proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
   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