text.rs 6.74 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
5
6
use crate::protocols::openai::nvext::NvExt;
use crate::request_template::RequestTemplate;
use crate::types::openai::chat_completions::{
7
    NvCreateChatCompletionRequest, OpenAIChatCompletionsStreamingEngine,
8
};
9
use dynamo_runtime::{pipeline::Context, runtime::CancellationToken, Runtime};
10
use futures::StreamExt;
11
use std::io::{ErrorKind, Write};
12

13
14
use crate::entrypoint::input::common;
use crate::entrypoint::EngineConfig;
15
16

/// Max response tokens for each single query. Must be less than model context size.
17
/// TODO: Cmd line flag to overwrite this
Paul Hendricks's avatar
Paul Hendricks committed
18
const MAX_TOKENS: u32 = 8192;
19
20

pub async fn run(
21
    runtime: Runtime,
22
    single_prompt: Option<String>,
23
24
    engine_config: EngineConfig,
) -> anyhow::Result<()> {
25
    let cancel_token = runtime.primary_token();
26
    let prepared_engine = common::prepare_engine(runtime, engine_config).await?;
27
    // TODO: Pass prepared_engine directly
28
29
    main_loop(
        cancel_token,
30
31
        &prepared_engine.service_name,
        prepared_engine.engine,
32
        single_prompt,
33
        prepared_engine.inspect_template,
34
        prepared_engine.request_template,
35
36
    )
    .await
37
38
39
40
41
42
}

async fn main_loop(
    cancel_token: CancellationToken,
    service_name: &str,
    engine: OpenAIChatCompletionsStreamingEngine,
43
    mut initial_prompt: Option<String>,
Paul Hendricks's avatar
Paul Hendricks committed
44
    _inspect_template: bool,
45
    template: Option<RequestTemplate>,
46
) -> anyhow::Result<()> {
47
48
49
    if initial_prompt.is_none() {
        tracing::info!("Ctrl-c to exit");
    }
50
51
    let theme = dialoguer::theme::ColorfulTheme::default();

52
53
54
    // Initial prompt is the pipe case: `echo "Hello" | dynamo-run ..`
    // We run that single prompt and exit
    let single = initial_prompt.is_some();
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
    let mut history = dialoguer::BasicHistory::default();
    let mut messages = vec![];
    while !cancel_token.is_cancelled() {
        // User input
        let prompt = match initial_prompt.take() {
            Some(p) => p,
            None => {
                let input_ui = dialoguer::Input::<String>::with_theme(&theme)
                    .history_with(&mut history)
                    .with_prompt("User");
                match input_ui.interact_text() {
                    Ok(prompt) => prompt,
                    Err(dialoguer::Error::IO(err)) => {
                        match err.kind() {
                            ErrorKind::Interrupted => {
                                // Ctrl-C
                                // Unfortunately I could not make dialoguer handle Ctrl-d
                            }
                            k => {
                                tracing::info!("IO error: {k}");
                            }
                        }
                        break;
                    }
                }
            }
        };
Paul Hendricks's avatar
Paul Hendricks committed
82
83
84
85
86
87
88
89
90

        // Construct messages
        let user_message = async_openai::types::ChatCompletionRequestMessage::User(
            async_openai::types::ChatCompletionRequestUserMessage {
                content: async_openai::types::ChatCompletionRequestUserMessageContent::Text(prompt),
                name: None,
            },
        );
        messages.push(user_message);
91
        // Request
Paul Hendricks's avatar
Paul Hendricks committed
92
93
        let inner = async_openai::types::CreateChatCompletionRequestArgs::default()
            .messages(messages.clone())
94
95
96
97
98
            .model(
                template
                    .as_ref()
                    .map_or_else(|| service_name.to_string(), |t| t.model.clone()),
            )
99
            .stream(true)
100
101
102
103
104
105
            .max_completion_tokens(
                template
                    .as_ref()
                    .map_or(MAX_TOKENS, |t| t.max_completion_tokens),
            )
            .temperature(template.as_ref().map_or(0.7, |t| t.temperature))
106
            .n(1) // only generate one response
Paul Hendricks's avatar
Paul Hendricks committed
107
            .build()?;
108
109
110
111
        let nvext = NvExt {
            ignore_eos: Some(true),
            ..Default::default()
        };
Paul Hendricks's avatar
Paul Hendricks committed
112
113
114
115
116
117
118

        // TODO We cannot set min_tokens with async-openai
        // if inspect_template {
        //     // This makes the pre-processor ignore stop tokens
        //     req_builder.min_tokens(8192);
        // }

119
120
121
122
        let req = NvCreateChatCompletionRequest {
            inner,
            nvext: Some(nvext),
        };
123
124

        // Call the model
125
126
127
128
129
130
131
        let mut stream = match engine.generate(Context::new(req)).await {
            Ok(stream) => stream,
            Err(err) => {
                tracing::error!(%err, "Request failed.");
                continue;
            }
        };
132
133
134
135
136

        // Stream the output to stdout
        let mut stdout = std::io::stdout();
        let mut assistant_message = String::new();
        while let Some(item) = stream.next().await {
137
138
139
            if cancel_token.is_cancelled() {
                break;
            }
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
            match (item.data.as_ref(), item.event.as_deref()) {
                (Some(data), _) => {
                    // Normal case
                    let entry = data.inner.choices.first();
                    let chat_comp = entry.as_ref().unwrap();
                    if let Some(c) = &chat_comp.delta.content {
                        let _ = stdout.write(c.as_bytes());
                        let _ = stdout.flush();
                        assistant_message += c;
                    }
                    if chat_comp.finish_reason.is_some() {
                        tracing::trace!("finish reason: {:?}", chat_comp.finish_reason.unwrap());
                        break;
                    }
                }
                (None, Some("error")) => {
                    // There's only one error but we loop in case that changes
                    for err in item.comment.unwrap_or_default() {
                        tracing::error!("Engine error: {err}");
                    }
                }
                (None, Some(annotation)) => {
                    tracing::debug!("Annotation. {annotation}: {:?}", item.comment);
                }
                _ => {
                    unreachable!("Event from engine with no data, no error, no annotation.");
                }
167
168
169
170
            }
        }
        println!();

Paul Hendricks's avatar
Paul Hendricks committed
171
172
173
174
175
176
177
178
        let assistant_content =
            async_openai::types::ChatCompletionRequestAssistantMessageContent::Text(
                assistant_message,
            );

        let assistant_message = async_openai::types::ChatCompletionRequestMessage::Assistant(
            async_openai::types::ChatCompletionRequestAssistantMessage {
                content: Some(assistant_content),
179
                ..Default::default()
Paul Hendricks's avatar
Paul Hendricks committed
180
181
182
            },
        );
        messages.push(assistant_message);
183
184
185
186

        if single {
            break;
        }
187
    }
188
    cancel_token.cancel(); // stop everything else
189
190
191
    println!();
    Ok(())
}