aggregator.rs 15.9 KB
Newer Older
1
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
3
// SPDX-License-Identifier: Apache-2.0

4
use std::collections::HashMap;
5
6

use anyhow::Result;
Ryan Olson's avatar
Ryan Olson committed
7
use futures::{Stream, StreamExt};
8

9
use super::NvCreateCompletionResponse;
10
use crate::protocols::{
11
    Annotated, DataStream,
12
    codec::{Message, SseCodecError},
Paul Hendricks's avatar
Paul Hendricks committed
13
    common::FinishReason,
14
15
    convert_sse_stream,
    openai::ParsingOptions,
16
17
18
19
20
21
};

/// Aggregates a stream of [`CompletionResponse`]s into a single [`CompletionResponse`].
pub struct DeltaAggregator {
    id: String,
    model: String,
22
    created: u32,
23
    usage: Option<dynamo_async_openai::types::CompletionUsage>,
24
    system_fingerprint: Option<String>,
25
    choices: HashMap<u32, DeltaChoice>,
26
    error: Option<String>,
27
    nvext: Option<serde_json::Value>,
28
29
30
}

struct DeltaChoice {
31
    index: u32,
32
    text: String,
Paul Hendricks's avatar
Paul Hendricks committed
33
    finish_reason: Option<FinishReason>,
34
    logprobs: Option<dynamo_async_openai::types::Logprobs>,
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
}

impl Default for DeltaAggregator {
    fn default() -> Self {
        Self::new()
    }
}

impl DeltaAggregator {
    pub fn new() -> Self {
        Self {
            id: "".to_string(),
            model: "".to_string(),
            created: 0,
            usage: None,
            system_fingerprint: None,
            choices: HashMap::new(),
            error: None,
53
            nvext: None,
54
55
56
57
58
        }
    }

    /// Aggregates a stream of [`Annotated<CompletionResponse>`]s into a single [`CompletionResponse`].
    pub async fn apply(
Ryan Olson's avatar
Ryan Olson committed
59
        stream: impl Stream<Item = Annotated<NvCreateCompletionResponse>>,
60
        parsing_options: ParsingOptions,
61
    ) -> Result<NvCreateCompletionResponse> {
62
        tracing::debug!("Tool Call Parser: {:?}", parsing_options.tool_call_parser); // TODO: remove this once completion has tool call support
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
        let aggregator = stream
            .fold(DeltaAggregator::new(), |mut aggregator, delta| async move {
                let delta = match delta.ok() {
                    Ok(delta) => delta,
                    Err(error) => {
                        aggregator.error = Some(error);
                        return aggregator;
                    }
                };

                if aggregator.error.is_none() && delta.data.is_some() {
                    // note: we could extract annotations here and add them to the aggregator
                    // to be return as part of the NIM Response Extension
                    // TODO(#14) - Aggregate Annotation

                    // these are cheap to move so we do it every time since we are consuming the delta
                    let delta = delta.data.unwrap();
80
81
                    aggregator.id = delta.inner.id;
                    aggregator.model = delta.inner.model;
82
                    aggregator.created = delta.inner.created;
83
                    if let Some(usage) = delta.inner.usage {
84
85
                        aggregator.usage = Some(usage);
                    }
86
                    if let Some(system_fingerprint) = delta.inner.system_fingerprint {
87
88
                        aggregator.system_fingerprint = Some(system_fingerprint);
                    }
89
90
91
92
                    // Aggregate nvext field (take the last non-None value)
                    if delta.inner.nvext.is_some() {
                        aggregator.nvext = delta.inner.nvext;
                    }
93
94

                    // handle the choices
95
                    for choice in delta.inner.choices {
96
97
98
                        let state_choice =
                            aggregator
                                .choices
99
                                .entry(choice.index)
100
                                .or_insert(DeltaChoice {
101
                                    index: choice.index,
102
103
                                    text: "".to_string(),
                                    finish_reason: None,
Greg Clark's avatar
Greg Clark committed
104
                                    logprobs: None,
105
106
107
108
                                });

                        state_choice.text.push_str(&choice.text);

109
110
111
112
                        // TODO - handle logprobs

                        // Handle CompletionFinishReason -> FinishReason conversation
                        state_choice.finish_reason = match choice.finish_reason {
113
                            Some(dynamo_async_openai::types::CompletionFinishReason::Stop) => {
114
115
                                Some(FinishReason::Stop)
                            }
116
                            Some(dynamo_async_openai::types::CompletionFinishReason::Length) => {
117
118
                                Some(FinishReason::Length)
                            }
119
120
121
                            Some(
                                dynamo_async_openai::types::CompletionFinishReason::ContentFilter,
                            ) => Some(FinishReason::ContentFilter),
122
123
                            None => None,
                        };
Greg Clark's avatar
Greg Clark committed
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141

                        // Update logprobs
                        if let Some(logprobs) = &choice.logprobs {
                            let state_lps = state_choice.logprobs.get_or_insert(
                                dynamo_async_openai::types::Logprobs {
                                    tokens: Vec::new(),
                                    token_logprobs: Vec::new(),
                                    top_logprobs: Vec::new(),
                                    text_offset: Vec::new(),
                                },
                            );
                            state_lps.tokens.extend(logprobs.tokens.clone());
                            state_lps
                                .token_logprobs
                                .extend(logprobs.token_logprobs.clone());
                            state_lps.top_logprobs.extend(logprobs.top_logprobs.clone());
                            state_lps.text_offset.extend(logprobs.text_offset.clone());
                        }
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
                    }
                }
                aggregator
            })
            .await;

        // If we have an error, return it
        let aggregator = if let Some(error) = aggregator.error {
            return Err(anyhow::anyhow!(error));
        } else {
            aggregator
        };

        // extra the aggregated deltas and sort by index
        let mut choices: Vec<_> = aggregator
            .choices
            .into_values()
159
            .map(dynamo_async_openai::types::Choice::from)
160
161
162
163
            .collect();

        choices.sort_by(|a, b| a.index.cmp(&b.index));

164
        let inner = dynamo_async_openai::types::CreateCompletionResponse {
165
            id: aggregator.id,
166
            created: aggregator.created,
167
168
            usage: aggregator.usage,
            model: aggregator.model,
169
            object: "text_completion".to_string(),
170
171
            system_fingerprint: aggregator.system_fingerprint,
            choices,
172
            nvext: aggregator.nvext,
173
174
175
176
177
        };

        let response = NvCreateCompletionResponse { inner };

        Ok(response)
178
179
180
    }
}

181
impl From<DeltaChoice> for dynamo_async_openai::types::Choice {
182
    fn from(delta: DeltaChoice) -> Self {
183
        let finish_reason = delta.finish_reason.map(Into::into);
184

185
        dynamo_async_openai::types::Choice {
186
            index: delta.index,
187
188
189
190
191
192
193
            text: delta.text,
            finish_reason,
            logprobs: delta.logprobs,
        }
    }
}

194
impl NvCreateCompletionResponse {
195
196
    pub async fn from_sse_stream(
        stream: DataStream<Result<Message, SseCodecError>>,
197
        parsing_options: ParsingOptions,
198
199
    ) -> Result<NvCreateCompletionResponse> {
        let stream = convert_sse_stream::<NvCreateCompletionResponse>(stream);
200
        NvCreateCompletionResponse::from_annotated_stream(stream, parsing_options).await
201
202
203
    }

    pub async fn from_annotated_stream(
Ryan Olson's avatar
Ryan Olson committed
204
        stream: impl Stream<Item = Annotated<NvCreateCompletionResponse>>,
205
        parsing_options: ParsingOptions,
206
    ) -> Result<NvCreateCompletionResponse> {
207
        DeltaAggregator::apply(stream, parsing_options).await
208
209
210
211
212
    }
}

#[cfg(test)]
mod tests {
213
    use std::str::FromStr;
214
215
216

    use futures::stream;

217
    use super::*;
218
    use crate::protocols::openai::completions::NvCreateCompletionResponse;
219

220
    fn create_test_delta(
221
        index: u32,
222
223
        text: &str,
        finish_reason: Option<String>,
Greg Clark's avatar
Greg Clark committed
224
        logprob: Option<f32>,
225
    ) -> Annotated<NvCreateCompletionResponse> {
226
227
228
229
230
231
232
        // This will silently discard invalid_finish reason values and fall back
        // to None - totally fine since this is test code
        let finish_reason = finish_reason
            .as_deref()
            .and_then(|s| FinishReason::from_str(s).ok())
            .map(Into::into);

Greg Clark's avatar
Greg Clark committed
233
234
235
236
237
238
239
240
241
242
243
244
245
246
        let logprobs = logprob.map(|lp| dynamo_async_openai::types::Logprobs {
            tokens: vec![text.to_string()],
            token_logprobs: vec![Some(lp)],
            top_logprobs: vec![
                serde_json::to_value(dynamo_async_openai::types::TopLogprobs {
                    token: text.to_string(),
                    logprob: lp,
                    bytes: None,
                })
                .unwrap(),
            ],
            text_offset: vec![0],
        });

247
        let inner = dynamo_async_openai::types::CreateCompletionResponse {
248
249
250
251
252
            id: "test_id".to_string(),
            model: "meta/llama-3.1-8b".to_string(),
            created: 1234567890,
            usage: None,
            system_fingerprint: None,
253
            choices: vec![dynamo_async_openai::types::Choice {
254
                index,
255
256
                text: text.to_string(),
                finish_reason,
Greg Clark's avatar
Greg Clark committed
257
                logprobs,
258
259
            }],
            object: "text_completion".to_string(),
260
            nvext: None,
261
262
263
264
        };

        let response = NvCreateCompletionResponse { inner };

265
        Annotated {
266
            data: Some(response),
267
268
269
270
271
272
273
274
275
            id: Some("test_id".to_string()),
            event: None,
            comment: None,
        }
    }

    #[tokio::test]
    async fn test_empty_stream() {
        // Create an empty stream
276
        let stream: DataStream<Annotated<NvCreateCompletionResponse>> = Box::pin(stream::empty());
277
278

        // Call DeltaAggregator::apply
279
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
280
281
282
283
284
285

        // Check the result
        assert!(result.is_ok());
        let response = result.unwrap();

        // Verify that the response is empty and has default values
286
287
288
289
290
291
        assert_eq!(response.inner.id, "");
        assert_eq!(response.inner.model, "");
        assert_eq!(response.inner.created, 0);
        assert!(response.inner.usage.is_none());
        assert!(response.inner.system_fingerprint.is_none());
        assert_eq!(response.inner.choices.len(), 0);
292
293
294
295
296
    }

    #[tokio::test]
    async fn test_single_delta() {
        // Create a sample delta
Greg Clark's avatar
Greg Clark committed
297
        let annotated_delta = create_test_delta(0, "Hello,", Some("length".to_string()), None);
298
299
300
301
302

        // Create a stream
        let stream = Box::pin(stream::iter(vec![annotated_delta]));

        // Call DeltaAggregator::apply
303
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
304
305
306
307
308
309

        // Check the result
        assert!(result.is_ok());
        let response = result.unwrap();

        // Verify the response fields
310
311
312
313
314
315
316
        assert_eq!(response.inner.id, "test_id");
        assert_eq!(response.inner.model, "meta/llama-3.1-8b");
        assert_eq!(response.inner.created, 1234567890);
        assert!(response.inner.usage.is_none());
        assert!(response.inner.system_fingerprint.is_none());
        assert_eq!(response.inner.choices.len(), 1);
        let choice = &response.inner.choices[0];
317
318
        assert_eq!(choice.index, 0);
        assert_eq!(choice.text, "Hello,".to_string());
319
320
        assert_eq!(
            choice.finish_reason,
321
            Some(dynamo_async_openai::types::CompletionFinishReason::Length)
322
        );
323
324
        assert_eq!(
            choice.finish_reason,
325
            Some(dynamo_async_openai::types::CompletionFinishReason::Length)
326
        );
327
328
329
330
331
332
333
334
        assert!(choice.logprobs.is_none());
    }

    #[tokio::test]
    async fn test_multiple_deltas_same_choice() {
        // Create multiple deltas with the same choice index
        // One will have a MessageRole and no FinishReason,
        // the other will have a FinishReason and no MessageRole
Greg Clark's avatar
Greg Clark committed
335
336
337
        let annotated_delta1 = create_test_delta(0, "Hello,", None, Some(-0.1));
        let annotated_delta2 =
            create_test_delta(0, " world!", Some("stop".to_string()), Some(-0.2));
338
339
340
341
342
343

        // Create a stream
        let annotated_deltas = vec![annotated_delta1, annotated_delta2];
        let stream = Box::pin(stream::iter(annotated_deltas));

        // Call DeltaAggregator::apply
344
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
345
346
347
348
349
350

        // Check the result
        assert!(result.is_ok());
        let response = result.unwrap();

        // Verify the response fields
351
352
        assert_eq!(response.inner.choices.len(), 1);
        let choice = &response.inner.choices[0];
353
354
        assert_eq!(choice.index, 0);
        assert_eq!(choice.text, "Hello, world!".to_string());
355
356
        assert_eq!(
            choice.finish_reason,
357
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
358
        );
Greg Clark's avatar
Greg Clark committed
359
        assert_eq!(choice.logprobs.as_ref().unwrap().tokens.len(), 2);
360
        assert_eq!(
Greg Clark's avatar
Greg Clark committed
361
362
            choice.logprobs.as_ref().unwrap().token_logprobs,
            vec![Some(-0.1), Some(-0.2)]
363
        );
364
365
366
367
368
    }

    #[tokio::test]
    async fn test_multiple_choices() {
        // Create a delta with multiple choices
369
        let inner = dynamo_async_openai::types::CreateCompletionResponse {
370
371
372
373
374
375
            id: "test_id".to_string(),
            model: "meta/llama-3.1-8b".to_string(),
            created: 1234567890,
            usage: None,
            system_fingerprint: None,
            choices: vec![
376
                dynamo_async_openai::types::Choice {
377
378
                    index: 0,
                    text: "Choice 0".to_string(),
379
                    finish_reason: Some(dynamo_async_openai::types::CompletionFinishReason::Stop),
380
381
                    logprobs: None,
                },
382
                dynamo_async_openai::types::Choice {
383
384
                    index: 1,
                    text: "Choice 1".to_string(),
385
                    finish_reason: Some(dynamo_async_openai::types::CompletionFinishReason::Stop),
386
387
388
389
                    logprobs: None,
                },
            ],
            object: "text_completion".to_string(),
390
            nvext: None,
391
392
393
394
        };

        let response = NvCreateCompletionResponse { inner };

395
        let annotated_delta = Annotated {
396
            data: Some(response),
397
398
399
400
401
402
403
404
405
            id: Some("test_id".to_string()),
            event: None,
            comment: None,
        };

        // Create a stream
        let stream = Box::pin(stream::iter(vec![annotated_delta]));

        // Call DeltaAggregator::apply
406
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
407
408
409
410
411
412

        // Check the result
        assert!(result.is_ok());
        let mut response = result.unwrap();

        // Verify the response fields
413
414
415
        assert_eq!(response.inner.choices.len(), 2);
        response.inner.choices.sort_by(|a, b| a.index.cmp(&b.index)); // Ensure the choices are ordered
        let choice0 = &response.inner.choices[0];
416
417
        assert_eq!(choice0.index, 0);
        assert_eq!(choice0.text, "Choice 0".to_string());
418
419
        assert_eq!(
            choice0.finish_reason,
420
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
421
        );
422
423
        assert_eq!(
            choice0.finish_reason,
424
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
425
        );
426

427
        let choice1 = &response.inner.choices[1];
428
429
        assert_eq!(choice1.index, 1);
        assert_eq!(choice1.text, "Choice 1".to_string());
430
431
        assert_eq!(
            choice1.finish_reason,
432
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
433
        );
434
435
        assert_eq!(
            choice1.finish_reason,
436
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
437
        );
438
439
    }
}