"tests/models/multimodal/generation/test_ultravox.py" did not exist on "fa93cd9f608a43db8ad55685114c38f3e1ee1289"
cbindgen.toml 1.3 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

16
17
language = "C++"
cpp_compat = true
Neelay Shah's avatar
Neelay Shah committed
18
include_guard = "__NVIDIA_DYNAMO_LLM_API__"
19

20

21
22
23
24
[enum]
rename_variants = "none"
prefix_with_name = false
enum_class = false
25
26


27
[export]
28
29
30
31
32
33
34
35
36
37
38
39
40
41
include = [
    "DynamoLlmResult",
    "dynamo_llm_init",
    "dynamo_llm_shutdown",
    "dynamo_llm_load_publisher_create",
    "dynamo_kv_event_publish_stored",
    "dynamo_kv_event_publish_removed",
    "WorkerSelectionPipeline",
    "dynamo_create_worker_selection_pipeline",
    "dynamo_destroy_worker_selection_pipeline",
    "dynamo_query_worker_selection_and_annotate",
    "dynamo_free_worker_selection_result",
]

42

43
[export.rename]
Neelay Shah's avatar
Neelay Shah committed
44
"DynamoLlmResult" = "dynamo_llm_result_t"