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[E0422]: cannot find struct, variant or union type `Embedding` in this scope
    --> src\proxy\mod.rs:2216:35
     |
2216 |                     .map(|(i, _)| Embedding {
     |                                   ^^^^^^^^^ not found in this scope
     |
help: consider importing this struct through its public re-export
     |
1091 +     use crate::Embedding;
     |

For more information about this error, try `rustc --explain E0422`.
error: could not compile `llmrust` (lib test) due to 1 previous error