Unverified Commit 5194acbd authored by atchernych's avatar atchernych Committed by GitHub
Browse files

feat: Create worker selection pipeline (#3080)


Signed-off-by: default avatarAnna Tchernych <atchernych@nvidia.com>
parent 0f63a05f
...@@ -24,7 +24,7 @@ repository.workspace = true ...@@ -24,7 +24,7 @@ repository.workspace = true
[lib] [lib]
name = "dynamo_llm_capi" name = "dynamo_llm_capi"
crate-type = ["cdylib"] crate-type = ["cdylib", "staticlib"]
[build-dependencies] [build-dependencies]
cbindgen = "0.27" cbindgen = "0.27"
......
...@@ -25,7 +25,20 @@ enum_class = false ...@@ -25,7 +25,20 @@ enum_class = false
[export] [export]
include = ["DynamoLlmResult", "dynamo_llm_init", "dynamo_llm_shutdown"] 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",
]
[export.rename] [export.rename]
"DynamoLlmResult" = "dynamo_llm_result_t" "DynamoLlmResult" = "dynamo_llm_result_t"
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment