local_model.rs 15.8 KB
Newer Older
1
2
3
4
5
6
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

use std::fs;
use std::path::{Path, PathBuf};

7
use dynamo_runtime::component::Endpoint;
8
use dynamo_runtime::discovery::DiscoverySpec;
9
use dynamo_runtime::protocols::EndpointId;
10
use dynamo_runtime::slug::Slug;
11
12
use dynamo_runtime::traits::DistributedRuntimeProvider;

13
use crate::entrypoint::RouterConfig;
14
use crate::mocker::protocols::MockEngineArgs;
15
use crate::model_card::ModelDeploymentCard;
16
use crate::model_type::{ModelInput, ModelType};
17
use crate::preprocessor::media::{MediaDecoder, MediaFetcher};
18
use crate::request_template::RequestTemplate;
19

20
21
22
pub mod runtime_config;

use runtime_config::ModelRuntimeConfig;
23

24
25
26
27
/// What we call a model if the user didn't provide a name. Usually this means the name
/// is invisible, for example in a text chat.
const DEFAULT_NAME: &str = "dynamo";

28
29
30
31
/// Engines don't usually provide a default, so we do.
const DEFAULT_KV_CACHE_BLOCK_SIZE: u32 = 16;

/// We can't have it default to 0, so pick something
Graham King's avatar
Graham King committed
32
33
/// 'pub' because the bindings use it for consistency.
pub const DEFAULT_HTTP_PORT: u16 = 8080;
34
35
36
37
38
39
40
41
42

pub struct LocalModelBuilder {
    model_path: Option<PathBuf>,
    model_name: Option<String>,
    endpoint_id: Option<EndpointId>,
    context_length: Option<u32>,
    template_file: Option<PathBuf>,
    router_config: Option<RouterConfig>,
    kv_cache_block_size: u32,
43
    http_host: Option<String>,
44
    http_port: u16,
Graham King's avatar
Graham King committed
45
46
    tls_cert_path: Option<PathBuf>,
    tls_key_path: Option<PathBuf>,
47
    migration_limit: u32,
48
    is_mocker: bool,
49
50
    extra_engine_args: Option<PathBuf>,
    runtime_config: ModelRuntimeConfig,
51
    user_data: Option<serde_json::Value>,
52
    custom_template_path: Option<PathBuf>,
53
    namespace: Option<String>,
54
55
    custom_backend_metrics_endpoint: Option<String>,
    custom_backend_metrics_polling_interval: Option<f64>,
56
57
    media_decoder: Option<MediaDecoder>,
    media_fetcher: Option<MediaFetcher>,
58
59
}

60
impl Default for LocalModelBuilder {
61
    fn default() -> Self {
62
63
        LocalModelBuilder {
            kv_cache_block_size: DEFAULT_KV_CACHE_BLOCK_SIZE,
64
            http_host: Default::default(),
65
            http_port: DEFAULT_HTTP_PORT,
Graham King's avatar
Graham King committed
66
67
            tls_cert_path: Default::default(),
            tls_key_path: Default::default(),
68
69
70
71
72
73
            model_path: Default::default(),
            model_name: Default::default(),
            endpoint_id: Default::default(),
            context_length: Default::default(),
            template_file: Default::default(),
            router_config: Default::default(),
74
            migration_limit: Default::default(),
75
            is_mocker: Default::default(),
76
77
            extra_engine_args: Default::default(),
            runtime_config: Default::default(),
78
            user_data: Default::default(),
79
            custom_template_path: Default::default(),
80
            namespace: Default::default(),
81
82
            custom_backend_metrics_endpoint: Default::default(),
            custom_backend_metrics_polling_interval: Default::default(),
83
84
            media_decoder: Default::default(),
            media_fetcher: Default::default(),
85
86
87
88
        }
    }
}

89
impl LocalModelBuilder {
90
91
92
    /// The path must exist
    pub fn model_path(&mut self, model_path: PathBuf) -> &mut Self {
        self.model_path = Some(model_path);
93
        self
94
95
    }

96
97
98
    pub fn model_name(&mut self, model_name: Option<String>) -> &mut Self {
        self.model_name = model_name;
        self
99
100
    }

101
102
    pub fn endpoint_id(&mut self, endpoint_id: Option<EndpointId>) -> &mut Self {
        self.endpoint_id = endpoint_id;
103
        self
104
105
    }

106
107
108
    pub fn context_length(&mut self, context_length: Option<u32>) -> &mut Self {
        self.context_length = context_length;
        self
109
110
    }

111
112
113
114
    /// Passing None resets it to default
    pub fn kv_cache_block_size(&mut self, kv_cache_block_size: Option<u32>) -> &mut Self {
        self.kv_cache_block_size = kv_cache_block_size.unwrap_or(DEFAULT_KV_CACHE_BLOCK_SIZE);
        self
115
116
    }

117
118
119
120
121
    pub fn http_host(&mut self, host: Option<String>) -> &mut Self {
        self.http_host = host;
        self
    }

Graham King's avatar
Graham King committed
122
123
124
125
126
127
128
129
130
131
132
133
    pub fn http_port(&mut self, port: u16) -> &mut Self {
        self.http_port = port;
        self
    }

    pub fn tls_cert_path(&mut self, p: Option<PathBuf>) -> &mut Self {
        self.tls_cert_path = p;
        self
    }

    pub fn tls_key_path(&mut self, p: Option<PathBuf>) -> &mut Self {
        self.tls_key_path = p;
134
        self
135
136
    }

137
138
    pub fn router_config(&mut self, router_config: Option<RouterConfig>) -> &mut Self {
        self.router_config = router_config;
139
140
141
        self
    }

142
143
144
145
146
    pub fn namespace(&mut self, namespace: Option<String>) -> &mut Self {
        self.namespace = namespace;
        self
    }

147
148
149
    pub fn request_template(&mut self, template_file: Option<PathBuf>) -> &mut Self {
        self.template_file = template_file;
        self
150
151
    }

152
153
154
155
156
    pub fn custom_template_path(&mut self, custom_template_path: Option<PathBuf>) -> &mut Self {
        self.custom_template_path = custom_template_path;
        self
    }

157
158
159
160
161
    pub fn migration_limit(&mut self, migration_limit: Option<u32>) -> &mut Self {
        self.migration_limit = migration_limit.unwrap_or(0);
        self
    }

162
163
164
165
166
    pub fn is_mocker(&mut self, is_mocker: bool) -> &mut Self {
        self.is_mocker = is_mocker;
        self
    }

167
168
169
170
171
172
173
174
175
176
    pub fn extra_engine_args(&mut self, extra_engine_args: Option<PathBuf>) -> &mut Self {
        self.extra_engine_args = extra_engine_args;
        self
    }

    pub fn runtime_config(&mut self, runtime_config: ModelRuntimeConfig) -> &mut Self {
        self.runtime_config = runtime_config;
        self
    }

177
178
179
180
181
    pub fn user_data(&mut self, user_data: Option<serde_json::Value>) -> &mut Self {
        self.user_data = user_data;
        self
    }

182
183
184
185
186
187
188
189
190
191
    pub fn custom_backend_metrics_endpoint(&mut self, endpoint: Option<String>) -> &mut Self {
        self.custom_backend_metrics_endpoint = endpoint;
        self
    }

    pub fn custom_backend_metrics_polling_interval(&mut self, interval: Option<f64>) -> &mut Self {
        self.custom_backend_metrics_polling_interval = interval;
        self
    }

192
193
194
195
196
197
198
199
200
201
    pub fn media_decoder(&mut self, media_decoder: Option<MediaDecoder>) -> &mut Self {
        self.media_decoder = media_decoder;
        self
    }

    pub fn media_fetcher(&mut self, media_fetcher: Option<MediaFetcher>) -> &mut Self {
        self.media_fetcher = media_fetcher;
        self
    }

202
203
204
205
206
207
208
209
    /// Make an LLM ready for use:
    /// - Download it from Hugging Face (and NGC in future) if necessary
    /// - Resolve the path
    /// - Load it's ModelDeploymentCard card
    /// - Name it correctly
    ///
    /// The model name will depend on what "model_path" is:
    /// - A folder: The last part of the folder name: "/data/llms/Qwen2.5-3B-Instruct" -> "Qwen2.5-3B-Instruct"
210
211
212
213
214
215
216
217
    /// - An HF repo: The HF repo name: "Qwen/Qwen3-0.6B" stays the same
    pub async fn build(&mut self) -> anyhow::Result<LocalModel> {
        // Generate an endpoint ID for this model if the user didn't provide one.
        // The user only provides one if exposing the model.
        let endpoint_id = self
            .endpoint_id
            .take()
            .unwrap_or_else(|| internal_endpoint("local_model"));
218

219
220
221
222
223
224
        let template = self
            .template_file
            .as_deref()
            .map(RequestTemplate::load)
            .transpose()?;

Yan Ru Pei's avatar
Yan Ru Pei committed
225
226
227
228
229
230
231
232
233
234
235
236
        // Override runtime configs with mocker engine args (applies to both paths)
        if self.is_mocker
            && let Some(path) = &self.extra_engine_args
        {
            let mocker_engine_args = MockEngineArgs::from_json_file(path)
                .expect("Failed to load mocker engine args for runtime config overriding.");
            self.kv_cache_block_size = mocker_engine_args.block_size as u32;
            self.runtime_config.total_kv_blocks = Some(mocker_engine_args.num_gpu_blocks as u64);
            self.runtime_config.max_num_seqs = mocker_engine_args.max_num_seqs.map(|v| v as u64);
            self.runtime_config.max_num_batched_tokens =
                mocker_engine_args.max_num_batched_tokens.map(|v| v as u64);
            self.runtime_config.data_parallel_size = mocker_engine_args.dp_size;
237
238
            self.media_decoder = Some(MediaDecoder::default());
            self.media_fetcher = Some(MediaFetcher::default());
Yan Ru Pei's avatar
Yan Ru Pei committed
239
240
        }

241
        // frontend and echo engine don't need a path.
242
        if self.model_path.is_none() {
243
244
245
            let mut card = ModelDeploymentCard::with_name_only(
                self.model_name.as_deref().unwrap_or(DEFAULT_NAME),
            );
Yan Ru Pei's avatar
Yan Ru Pei committed
246
            card.kv_cache_block_size = self.kv_cache_block_size;
247
            card.migration_limit = self.migration_limit;
248
            card.user_data = self.user_data.take();
249
            card.runtime_config = self.runtime_config.clone();
250
251
            card.media_decoder = self.media_decoder.clone();
            card.media_fetcher = self.media_fetcher.clone();
252

253
            return Ok(LocalModel {
254
                card,
255
256
257
                full_path: PathBuf::new(),
                endpoint_id,
                template,
258
                http_host: self.http_host.take(),
259
                http_port: self.http_port,
Graham King's avatar
Graham King committed
260
261
                tls_cert_path: self.tls_cert_path.take(),
                tls_key_path: self.tls_key_path.take(),
262
                router_config: self.router_config.take().unwrap_or_default(),
263
                runtime_config: self.runtime_config.clone(),
264
                namespace: self.namespace.clone(),
265
266
267
                custom_backend_metrics_endpoint: self.custom_backend_metrics_endpoint.clone(),
                custom_backend_metrics_polling_interval: self
                    .custom_backend_metrics_polling_interval,
268
269
270
271
272
            });
        }

        // Main logic. We are running a model.
        let model_path = self.model_path.take().unwrap();
273
274
275
276
277
278
279
        if !model_path.exists() {
            anyhow::bail!(
                "Path does not exist: '{}'. Use LocalModel::fetch to download it.",
                model_path.display(),
            );
        }
        let model_path = fs::canonicalize(model_path)?;
280

281
        let mut card =
282
283
284
285
286
287
288
289
290
            ModelDeploymentCard::load_from_disk(&model_path, self.custom_template_path.as_deref())?;
        // The served model name defaults to the full model path.
        // This matches what vllm and sglang do.
        card.set_name(
            &self
                .model_name
                .clone()
                .unwrap_or_else(|| model_path.display().to_string()),
        );
291

292
        card.kv_cache_block_size = self.kv_cache_block_size;
293

294
295
296
297
        // Override max number of tokens in context. We usually only do this to limit kv cache allocation.
        if let Some(context_length) = self.context_length {
            card.context_length = context_length;
        }
298

299
        card.migration_limit = self.migration_limit;
300
        card.user_data = self.user_data.take();
301
        card.runtime_config = self.runtime_config.clone();
302
303
        card.media_decoder = self.media_decoder.clone();
        card.media_fetcher = self.media_fetcher.clone();
304

305
306
        Ok(LocalModel {
            card,
307
            full_path: model_path,
308
309
            endpoint_id,
            template,
310
            http_host: self.http_host.take(),
311
            http_port: self.http_port,
Graham King's avatar
Graham King committed
312
313
            tls_cert_path: self.tls_cert_path.take(),
            tls_key_path: self.tls_key_path.take(),
314
            router_config: self.router_config.take().unwrap_or_default(),
315
            runtime_config: self.runtime_config.clone(),
316
            namespace: self.namespace.clone(),
317
318
            custom_backend_metrics_endpoint: self.custom_backend_metrics_endpoint.clone(),
            custom_backend_metrics_polling_interval: self.custom_backend_metrics_polling_interval,
319
320
321
322
323
324
325
326
327
328
        })
    }
}

#[derive(Debug, Clone)]
pub struct LocalModel {
    full_path: PathBuf,
    card: ModelDeploymentCard,
    endpoint_id: EndpointId,
    template: Option<RequestTemplate>,
329
    http_host: Option<String>,
Graham King's avatar
Graham King committed
330
331
332
    http_port: u16,
    tls_cert_path: Option<PathBuf>,
    tls_key_path: Option<PathBuf>,
333
    router_config: RouterConfig,
334
    runtime_config: ModelRuntimeConfig,
335
    namespace: Option<String>,
336
337
    custom_backend_metrics_endpoint: Option<String>,
    custom_backend_metrics_polling_interval: Option<f64>,
338
339
340
}

impl LocalModel {
341
342
343
344
345
346
347
348
349
    /// Ensure a model is accessible locally, returning it's path.
    /// Downloads the model from Hugging Face if necessary.
    /// If ignore_weights is true, model weight files will be skipped and only the model config
    /// will be downloaded.
    /// Returns the path to the model files
    pub async fn fetch(remote_name: &str, ignore_weights: bool) -> anyhow::Result<PathBuf> {
        super::hub::from_hf(remote_name, ignore_weights).await
    }

350
351
352
353
354
355
356
357
    pub fn card(&self) -> &ModelDeploymentCard {
        &self.card
    }

    pub fn path(&self) -> &Path {
        &self.full_path
    }

358
    /// Human friendly model name. This is the correct name.
359
360
361
362
    pub fn display_name(&self) -> &str {
        &self.card.display_name
    }

363
364
    /// The name under which we make this model available over HTTP.
    /// A slugified version of the model's name, for use in NATS, etcd, etc.
365
    pub fn service_name(&self) -> &str {
366
        self.card.slug().as_ref()
367
368
369
370
371
372
    }

    pub fn request_template(&self) -> Option<RequestTemplate> {
        self.template.clone()
    }

373
374
375
376
    pub fn http_host(&self) -> Option<String> {
        self.http_host.clone()
    }

377
378
379
380
    pub fn http_port(&self) -> u16 {
        self.http_port
    }

Graham King's avatar
Graham King committed
381
382
383
384
385
386
387
388
    pub fn tls_cert_path(&self) -> Option<&Path> {
        self.tls_cert_path.as_deref()
    }

    pub fn tls_key_path(&self) -> Option<&Path> {
        self.tls_key_path.as_deref()
    }

389
390
391
392
    pub fn router_config(&self) -> &RouterConfig {
        &self.router_config
    }

393
394
395
396
    pub fn runtime_config(&self) -> &ModelRuntimeConfig {
        &self.runtime_config
    }

397
398
399
400
    pub fn namespace(&self) -> Option<&str> {
        self.namespace.as_deref()
    }

401
402
403
404
405
406
407
408
409
410
411
412
413
414
    pub fn custom_backend_metrics_endpoint(&self) -> Option<&str> {
        self.custom_backend_metrics_endpoint.as_deref()
    }

    pub fn custom_backend_metrics_polling_interval(&self) -> Option<f64> {
        self.custom_backend_metrics_polling_interval
    }

    pub fn is_gguf(&self) -> bool {
        // GGUF is the only file (not-folder) we accept, so we don't need to check the extension
        // We will error when we come to parse it
        self.full_path.is_file()
    }

415
416
417
418
419
420
421
422
423
    /// An endpoint to identify this model by.
    pub fn endpoint_id(&self) -> &EndpointId {
        &self.endpoint_id
    }

    /// Drop the LocalModel returning it's ModelDeploymentCard.
    /// For the case where we only need the card and don't want to clone it.
    pub fn into_card(self) -> ModelDeploymentCard {
        self.card
424
425
426
427
428
429
430
431
    }

    /// Attach this model the endpoint. This registers it on the network
    /// allowing ingress to discover it.
    pub async fn attach(
        &mut self,
        endpoint: &Endpoint,
        model_type: ModelType,
432
        model_input: ModelInput,
433
    ) -> anyhow::Result<()> {
434
435
        self.card.model_type = model_type;
        self.card.model_input = model_input;
436

437
438
439
440
441
442
443
444
445
        // Register the Model Deployment Card via discovery interface
        let discovery = endpoint.drt().discovery();
        let spec = DiscoverySpec::from_model(
            endpoint.component().namespace().name().to_string(),
            endpoint.component().name().to_string(),
            endpoint.name().to_string(),
            &self.card,
        )?;
        let _instance = discovery.register(spec).await?;
446

447
        Ok(())
448
449
    }
}
450
451
452
453
454
455
456
457
458
459

/// A random endpoint to use for internal communication
/// We can't hard code because we may be running several on the same machine (GPUs 0-3 and 4-7)
fn internal_endpoint(engine: &str) -> EndpointId {
    EndpointId {
        namespace: Slug::slugify(&uuid::Uuid::new_v4().to_string()).to_string(),
        component: engine.to_string(),
        name: "generate".to_string(),
    }
}