1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//! Public Rust library for Sipp inference.
//!
//! This crate is the intended single dependency for Rust applications. It
//! exposes the high-level client API together with the native engine config
//! and shared value types needed to run local, gateway, or direct
//! provider inference.
/////////////////////////////////////////////////////////////////////////////////
/// TESTS
/////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////
/// SRC
/////////////////////////////////////////////////////////////////////////////////
/// High-level client API for local, gateway, and provider endpoints.
pub use *;
/// Native backend helpers.
/// Provider-neutral value types shared across Sipp APIs.
/// Native engine configuration and lower-level runtime APIs.
/// Engine and endpoint error types.
/// Protocol-neutral gateway execution primitives.
/// Native model lifecycle helpers and backend selection types.
/// Direct provider adapters behind the `providers` feature.
/// Native runtime execution APIs and request/metrics types.
/// GGUF inspection and browser cache sharding utilities.
/// Common native runtime configuration and default generation constants.
pub use ;
/// Returns the crate package version.