aggregator.rs 13.9 KB
Newer Older
1
2
3
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// 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
27
28
29
    error: Option<String>,
}

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

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,
        }
    }

    /// Aggregates a stream of [`Annotated<CompletionResponse>`]s into a single [`CompletionResponse`].
    pub async fn apply(
Ryan Olson's avatar
Ryan Olson committed
57
        stream: impl Stream<Item = Annotated<NvCreateCompletionResponse>>,
58
        parsing_options: ParsingOptions,
59
    ) -> Result<NvCreateCompletionResponse> {
60
        tracing::debug!("Tool Call Parser: {:?}", parsing_options.tool_call_parser); // TODO: remove this once completion has tool call support
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
        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();
78
79
                    aggregator.id = delta.inner.id;
                    aggregator.model = delta.inner.model;
80
                    aggregator.created = delta.inner.created;
81
                    if let Some(usage) = delta.inner.usage {
82
83
                        aggregator.usage = Some(usage);
                    }
84
                    if let Some(system_fingerprint) = delta.inner.system_fingerprint {
85
86
87
88
                        aggregator.system_fingerprint = Some(system_fingerprint);
                    }

                    // handle the choices
89
                    for choice in delta.inner.choices {
90
91
92
                        let state_choice =
                            aggregator
                                .choices
93
                                .entry(choice.index)
94
                                .or_insert(DeltaChoice {
95
                                    index: choice.index,
96
97
98
99
100
101
102
                                    text: "".to_string(),
                                    finish_reason: None,
                                    logprobs: choice.logprobs,
                                });

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

103
104
105
106
                        // TODO - handle logprobs

                        // Handle CompletionFinishReason -> FinishReason conversation
                        state_choice.finish_reason = match choice.finish_reason {
107
                            Some(dynamo_async_openai::types::CompletionFinishReason::Stop) => {
108
109
                                Some(FinishReason::Stop)
                            }
110
                            Some(dynamo_async_openai::types::CompletionFinishReason::Length) => {
111
112
                                Some(FinishReason::Length)
                            }
113
114
115
                            Some(
                                dynamo_async_openai::types::CompletionFinishReason::ContentFilter,
                            ) => Some(FinishReason::ContentFilter),
116
117
                            None => None,
                        };
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
                    }
                }
                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()
135
            .map(dynamo_async_openai::types::Choice::from)
136
137
138
139
            .collect();

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

140
        let inner = dynamo_async_openai::types::CreateCompletionResponse {
141
            id: aggregator.id,
142
            created: aggregator.created,
143
144
            usage: aggregator.usage,
            model: aggregator.model,
145
            object: "text_completion".to_string(),
146
147
            system_fingerprint: aggregator.system_fingerprint,
            choices,
148
149
150
151
152
        };

        let response = NvCreateCompletionResponse { inner };

        Ok(response)
153
154
155
    }
}

156
impl From<DeltaChoice> for dynamo_async_openai::types::Choice {
157
    fn from(delta: DeltaChoice) -> Self {
158
        let finish_reason = delta.finish_reason.map(Into::into);
159

160
        dynamo_async_openai::types::Choice {
161
            index: delta.index,
162
163
164
165
166
167
168
            text: delta.text,
            finish_reason,
            logprobs: delta.logprobs,
        }
    }
}

169
impl NvCreateCompletionResponse {
170
171
    pub async fn from_sse_stream(
        stream: DataStream<Result<Message, SseCodecError>>,
172
        parsing_options: ParsingOptions,
173
174
    ) -> Result<NvCreateCompletionResponse> {
        let stream = convert_sse_stream::<NvCreateCompletionResponse>(stream);
175
        NvCreateCompletionResponse::from_annotated_stream(stream, parsing_options).await
176
177
178
    }

    pub async fn from_annotated_stream(
Ryan Olson's avatar
Ryan Olson committed
179
        stream: impl Stream<Item = Annotated<NvCreateCompletionResponse>>,
180
        parsing_options: ParsingOptions,
181
    ) -> Result<NvCreateCompletionResponse> {
182
        DeltaAggregator::apply(stream, parsing_options).await
183
184
185
186
187
    }
}

#[cfg(test)]
mod tests {
188
    use std::str::FromStr;
189
190
191

    use futures::stream;

192
    use super::*;
193
    use crate::protocols::openai::completions::NvCreateCompletionResponse;
194

195
    fn create_test_delta(
196
        index: u32,
197
198
        text: &str,
        finish_reason: Option<String>,
199
    ) -> Annotated<NvCreateCompletionResponse> {
200
201
202
203
204
205
206
        // 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);

207
        let inner = dynamo_async_openai::types::CreateCompletionResponse {
208
209
210
211
212
            id: "test_id".to_string(),
            model: "meta/llama-3.1-8b".to_string(),
            created: 1234567890,
            usage: None,
            system_fingerprint: None,
213
            choices: vec![dynamo_async_openai::types::Choice {
214
                index,
215
216
217
218
219
220
221
222
223
                text: text.to_string(),
                finish_reason,
                logprobs: None,
            }],
            object: "text_completion".to_string(),
        };

        let response = NvCreateCompletionResponse { inner };

224
        Annotated {
225
            data: Some(response),
226
227
228
229
230
231
232
233
234
            id: Some("test_id".to_string()),
            event: None,
            comment: None,
        }
    }

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

        // Call DeltaAggregator::apply
238
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
239
240
241
242
243
244

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

        // Verify that the response is empty and has default values
245
246
247
248
249
250
        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);
251
252
253
254
255
256
257
258
259
260
261
    }

    #[tokio::test]
    async fn test_single_delta() {
        // Create a sample delta
        let annotated_delta = create_test_delta(0, "Hello,", Some("length".to_string()));

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

        // Call DeltaAggregator::apply
262
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
263
264
265
266
267
268

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

        // Verify the response fields
269
270
271
272
273
274
275
        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];
276
277
        assert_eq!(choice.index, 0);
        assert_eq!(choice.text, "Hello,".to_string());
278
279
        assert_eq!(
            choice.finish_reason,
280
            Some(dynamo_async_openai::types::CompletionFinishReason::Length)
281
        );
282
283
        assert_eq!(
            choice.finish_reason,
284
            Some(dynamo_async_openai::types::CompletionFinishReason::Length)
285
        );
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
        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
        let annotated_delta1 = create_test_delta(0, "Hello,", None);
        let annotated_delta2 = create_test_delta(0, " world!", Some("stop".to_string()));

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

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

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

        // Verify the response fields
309
310
        assert_eq!(response.inner.choices.len(), 1);
        let choice = &response.inner.choices[0];
311
312
        assert_eq!(choice.index, 0);
        assert_eq!(choice.text, "Hello, world!".to_string());
313
314
        assert_eq!(
            choice.finish_reason,
315
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
316
        );
317
318
        assert_eq!(
            choice.finish_reason,
319
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
320
        );
321
322
323
324
325
    }

    #[tokio::test]
    async fn test_multiple_choices() {
        // Create a delta with multiple choices
326
        let inner = dynamo_async_openai::types::CreateCompletionResponse {
327
328
329
330
331
332
            id: "test_id".to_string(),
            model: "meta/llama-3.1-8b".to_string(),
            created: 1234567890,
            usage: None,
            system_fingerprint: None,
            choices: vec![
333
                dynamo_async_openai::types::Choice {
334
335
                    index: 0,
                    text: "Choice 0".to_string(),
336
                    finish_reason: Some(dynamo_async_openai::types::CompletionFinishReason::Stop),
337
338
                    logprobs: None,
                },
339
                dynamo_async_openai::types::Choice {
340
341
                    index: 1,
                    text: "Choice 1".to_string(),
342
                    finish_reason: Some(dynamo_async_openai::types::CompletionFinishReason::Stop),
343
344
345
346
347
348
349
350
                    logprobs: None,
                },
            ],
            object: "text_completion".to_string(),
        };

        let response = NvCreateCompletionResponse { inner };

351
        let annotated_delta = Annotated {
352
            data: Some(response),
353
354
355
356
357
358
359
360
361
            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
362
        let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
363
364
365
366
367
368

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

        // Verify the response fields
369
370
371
        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];
372
373
        assert_eq!(choice0.index, 0);
        assert_eq!(choice0.text, "Choice 0".to_string());
374
375
        assert_eq!(
            choice0.finish_reason,
376
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
377
        );
378
379
        assert_eq!(
            choice0.finish_reason,
380
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
381
        );
382

383
        let choice1 = &response.inner.choices[1];
384
385
        assert_eq!(choice1.index, 1);
        assert_eq!(choice1.text, "Choice 1".to_string());
386
387
        assert_eq!(
            choice1.finish_reason,
388
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
389
        );
390
391
        assert_eq!(
            choice1.finish_reason,
392
            Some(dynamo_async_openai::types::CompletionFinishReason::Stop)
393
        );
394
395
    }
}