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
// 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 *;
// Embeddings: `Embedding` and `CreateEmbeddingResponse` are owned
// locally (in the `embeddings` submodule) so a per-input embedding
// can be either a float vector or a base64 string per the OpenAI
// `encoding_format` spec. Every other embedding type is still
// re-exported from `async_openai::types::embeddings::*`.
pub use *;
// Images: re-exported wholesale from async-openai (no Dynamo overrides).
pub use *;
// --- Convenience impls for locally-defined types ---
use crateOpenAIError;
use UninitializedFieldError;