common.rs 7.34 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: Copyright (c) 2024-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
use std::pin::Pin;

18
use dynamo_llm::{
19
    backend::{Backend, ExecutionContext},
20
    engines::StreamingEngineAdapter,
21
22
    http::service::discovery::ModelNetworkName,
    model_card::ModelDeploymentCard,
23
    preprocessor::OpenAIPreprocessor,
24
    protocols::common::llm_backend::{BackendInput, BackendOutput},
25
26
27
28
29
30
31
32
33
    types::{
        openai::chat_completions::{
            NvCreateChatCompletionRequest, NvCreateChatCompletionStreamResponse,
            OpenAIChatCompletionsStreamingEngine,
        },
        Annotated,
    },
};
use dynamo_runtime::{
34
    engine::{AsyncEngineStream, Data},
35
36
37
    pipeline::{
        Context, ManyOut, Operator, PushRouter, ServiceBackend, ServiceFrontend, SingleIn, Source,
    },
38
39
40
41
    DistributedRuntime, Runtime,
};
use std::sync::Arc;

42
43
use crate::{flags::RouterMode, EngineConfig, Flags};

44
/// Turns an EngineConfig into an OpenAI chat-completions and completions supported StreamingEngine.
45
46
pub async fn prepare_engine(
    runtime: Runtime,
47
    flags: Flags,
48
49
50
51
52
53
54
    engine_config: EngineConfig,
) -> anyhow::Result<(String, OpenAIChatCompletionsStreamingEngine, bool)> {
    match engine_config {
        EngineConfig::Dynamic(endpoint_id) => {
            let distributed_runtime = DistributedRuntime::from_settings(runtime.clone()).await?;

            let endpoint = distributed_runtime
55
56
57
                .namespace(endpoint_id.namespace.clone())?
                .component(endpoint_id.component.clone())?
                .endpoint(endpoint_id.name.clone());
58

59
60
            let client = endpoint.client().await?;
            let router = match &flags.router_mode {
61
62
                RouterMode::Random | RouterMode::RoundRobin => {
                    tracing::info!("Waiting for remote model..");
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

                    // We then use the ModelDeploymentCard's `requires_preprocessing`
                    // field to decide what kind of PushRouter to make.
                    let remote_endpoints = client.wait_for_endpoints().await?;
                    debug_assert!(!remote_endpoints.is_empty());
                    tracing::info!(count = remote_endpoints.len(), "Model(s) discovered");

                    let network_name: ModelNetworkName = (&remote_endpoints[0]).into();
                    let Some(etcd_client) = distributed_runtime.etcd_client() else {
                        anyhow::bail!("Cannot run distributed components without etcd");
                    };
                    let mdc = network_name.load_mdc(endpoint_id, etcd_client).await?;
                    if mdc.requires_preprocessing {
                        // Note requires_preprocessing is never true in our code right now
                        todo!("Ingress-side pre-processing not supported yet");
                    } else {
                        PushRouter::<
                            NvCreateChatCompletionRequest,
                            Annotated<NvCreateChatCompletionStreamResponse>,
                        >::from_client(client, flags.router_mode.into())
                        .await?
                    }
85
86
                }
                RouterMode::KV => todo!(),
87
            };
88
89
90
91

            // The service_name isn't used for text chat outside of logs,
            // so use the path. That avoids having to listen on etcd for model registration.
            let service_name = endpoint.subject();
92
            Ok((service_name, Arc::new(router), false))
93
94
95
96
        }
        EngineConfig::StaticFull {
            service_name,
            engine,
97
            card: _card,
98
99
        } => {
            tracing::debug!("Model: {service_name}");
100
            let engine = Arc::new(StreamingEngineAdapter::new(engine));
101
102
103
104
105
106
107
            Ok((service_name, engine, false))
        }
        EngineConfig::StaticCore {
            service_name,
            engine: inner_engine,
            card,
        } => {
108
109
110
111
112
            let pipeline = build_pipeline::<
                NvCreateChatCompletionRequest,
                NvCreateChatCompletionStreamResponse,
            >(&card, inner_engine)
            .await?;
113
114
115
116
117
118
119

            tracing::debug!("Model: {service_name} with pre-processing");
            Ok((service_name, pipeline, true))
        }
        EngineConfig::None => unreachable!(),
    }
}
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198

pub async fn build_pipeline<Req, Resp>(
    card: &ModelDeploymentCard,
    engine: ExecutionContext,
) -> anyhow::Result<Arc<ServiceFrontend<SingleIn<Req>, ManyOut<Annotated<Resp>>>>>
where
    Req: Data,
    Resp: Data,
    OpenAIPreprocessor: Operator<
        Context<Req>,
        Pin<Box<dyn AsyncEngineStream<Annotated<Resp>>>>,
        Context<BackendInput>,
        Pin<Box<dyn AsyncEngineStream<Annotated<BackendOutput>>>>,
    >,
{
    let frontend = ServiceFrontend::<SingleIn<Req>, ManyOut<Annotated<Resp>>>::new();
    let preprocessor = OpenAIPreprocessor::new((*card).clone())
        .await?
        .into_operator();
    let backend = Backend::from_mdc((*card).clone()).await?.into_operator();
    let engine = ServiceBackend::from_engine(engine);

    Ok(frontend
        .link(preprocessor.forward_edge())?
        .link(backend.forward_edge())?
        .link(engine)?
        .link(backend.backward_edge())?
        .link(preprocessor.backward_edge())?
        .link(frontend)?)
}

#[cfg(test)]
mod tests {
    use super::*;
    use dynamo_llm::types::openai::{
        chat_completions::{NvCreateChatCompletionRequest, NvCreateChatCompletionStreamResponse},
        completions::{CompletionRequest, CompletionResponse},
    };

    const HF_PATH: &str = concat!(
        env!("CARGO_MANIFEST_DIR"),
        "/../../lib/llm/tests/data/sample-models/mock-llama-3.1-8b-instruct"
    );

    #[tokio::test]
    async fn test_build_chat_completions_pipeline_core_engine_succeeds() -> anyhow::Result<()> {
        // Create test model card
        let card = ModelDeploymentCard::from_local_path(HF_PATH, None).await?;
        let engine = dynamo_llm::engines::make_engine_core();

        // Build pipeline for chat completions
        let pipeline = build_pipeline::<
            NvCreateChatCompletionRequest,
            NvCreateChatCompletionStreamResponse,
        >(&card, engine)
        .await?;

        // Verify pipeline was created
        assert!(Arc::strong_count(&pipeline) >= 1);

        Ok(())
    }

    #[tokio::test]
    async fn test_build_completions_pipeline_core_engine_succeeds() -> anyhow::Result<()> {
        // Create test model card
        let card = ModelDeploymentCard::from_local_path(HF_PATH, None).await?;
        let engine = dynamo_llm::engines::make_engine_core();

        // Build pipeline for completions
        let pipeline =
            build_pipeline::<CompletionRequest, CompletionResponse>(&card, engine).await?;

        // Verify pipeline was created
        assert!(Arc::strong_count(&pipeline) >= 1);

        Ok(())
    }
}