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
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
// Types used in inference API requests and responses.
//
// Base OpenAI types are re-exported from upstream async-openai.
// Inference-serving extensions and Anthropic types are locally defined.
// --- Locally defined modules ---
// --- Local type re-exports ---
pub use *;
pub use *;
// --- Upstream re-exports (types-only, no HTTP client) ---
// Embeddings (full re-export)
pub use *;
// Images
pub use *;
// --- Convenience impls for locally-defined types ---
use crateOpenAIError;
use UninitializedFieldError;