serving_responses.py 84.3 KB
Newer Older
1
2
3
4
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project

import asyncio
5
import json
6
import time
7
import uuid
8
from collections import deque
9
from collections.abc import AsyncGenerator, AsyncIterator, Callable, Sequence
10
from contextlib import AsyncExitStack
11
from copy import copy
12
from http import HTTPStatus
13
from typing import Final
14
15
16

import jinja2
from fastapi import Request
17
18
19
20
21
22
from openai.types.responses import (
    ResponseCodeInterpreterCallCodeDeltaEvent,
    ResponseCodeInterpreterCallCodeDoneEvent,
    ResponseCodeInterpreterCallCompletedEvent,
    ResponseCodeInterpreterCallInProgressEvent,
    ResponseCodeInterpreterCallInterpretingEvent,
23
24
25
    ResponseCodeInterpreterToolCallParam,
    ResponseContentPartAddedEvent,
    ResponseContentPartDoneEvent,
26
27
    ResponseFunctionCallArgumentsDeltaEvent,
    ResponseFunctionCallArgumentsDoneEvent,
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
    ResponseFunctionToolCall,
    ResponseFunctionWebSearch,
    ResponseOutputItem,
    ResponseOutputItemAddedEvent,
    ResponseOutputItemDoneEvent,
    ResponseOutputMessage,
    ResponseOutputText,
    ResponseReasoningItem,
    ResponseReasoningTextDeltaEvent,
    ResponseReasoningTextDoneEvent,
    ResponseStatus,
    ResponseTextDeltaEvent,
    ResponseTextDoneEvent,
    ResponseWebSearchCallCompletedEvent,
    ResponseWebSearchCallInProgressEvent,
    ResponseWebSearchCallSearchingEvent,
    response_function_web_search,
    response_text_delta_event,
)
from openai.types.responses.response_output_text import Logprob, LogprobTopLogprob
48
from openai.types.responses.response_reasoning_item import (
49
50
    Content as ResponseReasoningTextContent,
)
51
from openai_harmony import Message as OpenAIHarmonyMessage
52

53
from vllm import envs
54
from vllm.engine.protocol import EngineClient
55
56
57
58
59
60
61
62
63
64
from vllm.entrypoints.chat_utils import (
    ChatCompletionMessageParam,
    ChatTemplateContentFormatOption,
)
from vllm.entrypoints.context import (
    ConversationContext,
    HarmonyContext,
    SimpleContext,
    StreamingHarmonyContext,
)
65
from vllm.entrypoints.harmony_utils import (
66
    construct_harmony_previous_input_messages,
67
68
69
70
71
72
73
74
75
76
    get_developer_message,
    get_stop_tokens_for_assistant_actions,
    get_system_message,
    get_user_message,
    has_custom_tools,
    parse_output_message,
    parse_remaining_state,
    parse_response_input,
    render_for_completion,
)
77
from vllm.entrypoints.logger import RequestLogger
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
from vllm.entrypoints.openai.protocol import (
    DeltaMessage,
    ErrorResponse,
    InputTokensDetails,
    OutputTokensDetails,
    RequestResponseMetadata,
    ResponseCompletedEvent,
    ResponseCreatedEvent,
    ResponseInProgressEvent,
    ResponseReasoningPartAddedEvent,
    ResponseReasoningPartDoneEvent,
    ResponsesRequest,
    ResponsesResponse,
    ResponseUsage,
    StreamingResponsesResponse,
)
94
95
from vllm.entrypoints.openai.serving_engine import OpenAIServing
from vllm.entrypoints.openai.serving_models import OpenAIServingModels
96
97
98
99
100
from vllm.entrypoints.responses_utils import (
    construct_chat_message_with_tool_call,
    convert_tool_responses_to_completions_format,
    extract_tool_types,
)
101
from vllm.entrypoints.tool_server import ToolServer
102
from vllm.inputs.data import TokensPrompt as EngineTokensPrompt
103
from vllm.logger import init_logger
104
105
from vllm.logprobs import Logprob as SampleLogprob
from vllm.logprobs import SampleLogprobs
106
from vllm.outputs import CompletionOutput
107
from vllm.sampling_params import SamplingParams, StructuredOutputsParams
108
109
110
111
112
113
114
115
116
117
118
119
from vllm.transformers_utils.tokenizer import AnyTokenizer
from vllm.utils import random_uuid

logger = init_logger(__name__)


class OpenAIServingResponses(OpenAIServing):
    def __init__(
        self,
        engine_client: EngineClient,
        models: OpenAIServingModels,
        *,
120
121
        request_logger: RequestLogger | None,
        chat_template: str | None,
122
123
124
125
        chat_template_content_format: ChatTemplateContentFormatOption,
        return_tokens_as_token_ids: bool = False,
        reasoning_parser: str = "",
        enable_auto_tools: bool = False,
126
127
        tool_parser: str | None = None,
        tool_server: ToolServer | None = None,
128
129
        enable_prompt_tokens_details: bool = False,
        enable_force_include_usage: bool = False,
130
        enable_log_outputs: bool = False,
131
        log_error_stack: bool = False,
132
133
134
135
136
137
    ) -> None:
        super().__init__(
            engine_client=engine_client,
            models=models,
            request_logger=request_logger,
            return_tokens_as_token_ids=return_tokens_as_token_ids,
138
            log_error_stack=log_error_stack,
139
140
141
142
        )

        self.chat_template = chat_template
        self.chat_template_content_format: Final = chat_template_content_format
143
        self.enable_log_outputs = enable_log_outputs
144

145
146
        self.reasoning_parser = self._get_reasoning_parser(
            reasoning_parser_name=reasoning_parser
147
        )
148
149
        self.enable_prompt_tokens_details = enable_prompt_tokens_details
        self.enable_force_include_usage = enable_force_include_usage
150
        self.default_sampling_params = self.model_config.get_diff_sampling_param()
151
152
153
        if self.default_sampling_params:
            source = self.model_config.generation_config
            source = "model" if source == "auto" else source
154
155
156
157
158
            logger.info(
                "Using default chat sampling params from %s: %s",
                source,
                self.default_sampling_params,
            )
159

160
161
162
163
164
        # If False (default), the "store" option is (silently) ignored and the
        # response is not stored. If True, the response is stored in memory.
        # NOTE(woosuk): This may not be intuitive for users, as the default
        # behavior in OpenAI's Responses API is to store the response, but
        # vLLM's default behavior is not.
165
        self.enable_store = envs.VLLM_ENABLE_RESPONSES_API_STORE
166
167
168
169
        if self.enable_store:
            logger.warning_once(
                "`VLLM_ENABLE_RESPONSES_API_STORE` is enabled. This may "
                "cause a memory leak since we never remove responses from "
170
171
                "the store."
            )
172

173
        self.use_harmony = self.model_config.hf_config.model_type == "gpt_oss"
174
        if self.use_harmony:
175
176
177
178
            logger.warning(
                "For gpt-oss, we ignore --enable-auto-tool-choice "
                "and always enable tool use."
            )
179
180
181
182
183
            # OpenAI models have two EOS-like tokens: <|return|> and <|call|>.
            # We need to add them to the stop token ids.
            if "stop_token_ids" not in self.default_sampling_params:
                self.default_sampling_params["stop_token_ids"] = []
            self.default_sampling_params["stop_token_ids"].extend(
184
185
                get_stop_tokens_for_assistant_actions()
            )
186
        self.enable_auto_tools = enable_auto_tools
187
        # set up tool use
188
189
190
191
        self.tool_parser = self._get_tool_parser(
            tool_parser_name=tool_parser, enable_auto_tools=enable_auto_tools
        )
        self.exclude_tools_when_tool_choice_none = False
192
        # HACK(woosuk): This is a hack. We should use a better store.
193
194
        # FIXME: If enable_store=True, this may cause a memory leak since we
        # never remove responses from the store.
195
196
197
198
        self.response_store: dict[str, ResponsesResponse] = {}
        self.response_store_lock = asyncio.Lock()

        # HACK(woosuk): This is a hack. We should use a better store.
199
200
        # FIXME: If enable_store=True, this may cause a memory leak since we
        # never remove messages from the store.
201
202
        self.msg_store: dict[str, list[ChatCompletionMessageParam]] = {}

203
204
205
        # HACK(wuhang): This is a hack. We should use a better store.
        # FIXME: If enable_store=True, this may cause a memory leak since we
        # never remove events from the store.
206
207
208
        self.event_store: dict[
            str, tuple[deque[StreamingResponsesResponse], asyncio.Event]
        ] = {}
209

210
211
        self.background_tasks: dict[str, asyncio.Task] = {}

212
213
        self.tool_server = tool_server

214
    def _validate_generator_input(
215
        self, engine_prompt: EngineTokensPrompt
216
    ) -> ErrorResponse | None:
217
218
219
220
221
222
        """Add validations to the input to the generator here."""
        if self.max_model_len <= len(engine_prompt["prompt_token_ids"]):
            error_message = (
                "The engine prompt length"
                f" {len(engine_prompt['prompt_token_ids'])} "
                f"exceeds the max_model_len {self.max_model_len}. "
223
224
                "Please reduce prompt."
            )
225
226
227
228
229
230
231
            return self.create_error_response(
                err_type="invalid_request_error",
                message=error_message,
                status_code=HTTPStatus.BAD_REQUEST,
            )
        return None

232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
    def _validate_create_responses_input(
        self, request: ResponsesRequest
    ) -> ErrorResponse | None:
        if self.use_harmony and request.is_include_output_logprobs():
            return self.create_error_response(
                err_type="invalid_request_error",
                message="logprobs are not supported with gpt-oss models",
                status_code=HTTPStatus.BAD_REQUEST,
            )
        if request.store and not self.enable_store and request.background:
            return self.create_error_response(
                err_type="invalid_request_error",
                message=(
                    "This vLLM engine does not support `store=True` and "
                    "therefore does not support the background mode. To "
                    "enable these features, set the environment variable "
                    "`VLLM_ENABLE_RESPONSES_API_STORE=1` when launching "
                    "the vLLM server."
                ),
                status_code=HTTPStatus.BAD_REQUEST,
            )
253
254
255
256
257
258
259
        if request.previous_input_messages and request.previous_response_id:
            return self.create_error_response(
                err_type="invalid_request_error",
                message="Only one of `previous_input_messages` and "
                "`previous_response_id` can be set.",
                status_code=HTTPStatus.BAD_REQUEST,
            )
260
261
        return None

262
263
264
    async def create_responses(
        self,
        request: ResponsesRequest,
265
266
267
268
269
270
        raw_request: Request | None = None,
    ) -> (
        AsyncGenerator[StreamingResponsesResponse, None]
        | ResponsesResponse
        | ErrorResponse
    ):
271
272
273
274
        error_check_ret = await self._check_model(request)
        if error_check_ret is not None:
            logger.error("Error with model %s", error_check_ret)
            return error_check_ret
275
276
277
        maybe_validation_error = self._validate_create_responses_input(request)
        if maybe_validation_error is not None:
            return maybe_validation_error
278
279
280
281
282
283
284

        # If the engine is dead, raise the engine's DEAD_ERROR.
        # This is required for the streaming case, where we return a
        # success status before we actually start generating text :).
        if self.engine_client.errored:
            raise self.engine_client.dead_error

285
        if request.store and not self.enable_store:
286
287
288
289
290
291
292
            # Disable the store option.
            # NOTE(woosuk): Although returning an error is possible, we opted
            # to implicitly disable store and process the request anyway, as
            # we assume most users do not intend to actually store the response
            # (i.e., their request's `store=True` just because it's the default
            # value).
            request.store = False
293

294
295
296
297
298
299
300
301
302
303
304
        # Handle the previous response ID.
        prev_response_id = request.previous_response_id
        if prev_response_id is not None:
            async with self.response_store_lock:
                prev_response = self.response_store.get(prev_response_id)
            if prev_response is None:
                return self._make_not_found_error(prev_response_id)
        else:
            prev_response = None

        try:
305
            lora_request = self._maybe_get_adapters(request)
306
            model_name = self.models.model_name(lora_request)
307
            tokenizer = await self.engine_client.get_tokenizer()
308

309
310
            if self.use_harmony:
                messages, request_prompts, engine_prompts = (
311
312
                    self._make_request_with_harmony(request, prev_response)
                )
313
            else:
314
315
316
                messages, request_prompts, engine_prompts = await self._make_request(
                    request, prev_response, tokenizer
                )
317

318
319
320
321
322
323
324
        except (
            ValueError,
            TypeError,
            RuntimeError,
            jinja2.TemplateError,
            NotImplementedError,
        ) as e:
325
326
327
            logger.exception("Error in preprocessing prompt inputs")
            return self.create_error_response(f"{e} {e.__cause__}")

328
        request_metadata = RequestResponseMetadata(request_id=request.request_id)
329
330
331
332
        if raw_request:
            raw_request.state.request_metadata = request_metadata

        # Schedule the request and get the result generator.
333
        generators: list[AsyncGenerator[ConversationContext, None]] = []
334
335
336
337
338
339
340

        builtin_tool_list: list[str] = []
        if self.use_harmony and self.tool_server is not None:
            if self.tool_server.has_tool("browser"):
                builtin_tool_list.append("browser")
            if self.tool_server.has_tool("python"):
                builtin_tool_list.append("python")
341
342
            if self.tool_server.has_tool("container"):
                builtin_tool_list.append("container")
343

344
345
346
347
348
349
350
        if self.tool_server is not None:
            available_tools = builtin_tool_list
        else:
            assert len(builtin_tool_list) == 0
            available_tools = []
        try:
            for i, engine_prompt in enumerate(engine_prompts):
351
352
353
354
                maybe_error = self._validate_generator_input(engine_prompt)
                if maybe_error is not None:
                    return maybe_error

355
                default_max_tokens = self.max_model_len - len(
356
357
                    engine_prompt["prompt_token_ids"]
                )
358

359
                sampling_params = request.to_sampling_params(
360
361
                    default_max_tokens, self.default_sampling_params
                )
362

363
364
365
366
367
                trace_headers = (
                    None
                    if raw_request is None
                    else await self._get_trace_headers(raw_request.headers)
                )
368
369
370
371

                context: ConversationContext
                if self.use_harmony:
                    if request.stream:
372
                        context = StreamingHarmonyContext(messages, available_tools)
373
374
375
376
                    else:
                        context = HarmonyContext(messages, available_tools)
                else:
                    context = SimpleContext()
377
378
379
380
381
382
383
384
385
386
387
388
389

                if self.reasoning_parser is not None:
                    reasoning_parser = self.reasoning_parser(tokenizer)
                    if sampling_params.structured_outputs is None:
                        sampling_params.structured_outputs = StructuredOutputsParams()
                    struct_out = sampling_params.structured_outputs
                    if struct_out.all_non_structural_tag_constraints_none():
                        sampling_params.structured_outputs.structural_tag = (
                            reasoning_parser.prepare_structured_tag(
                                sampling_params.structured_outputs.structural_tag,
                                self.tool_server,
                            )
                        )
390
391
392
393
394
395
396
397
398
                generator = self._generate_with_builtin_tools(
                    request_id=request.request_id,
                    request_prompt=request_prompts[i],
                    engine_prompt=engine_prompt,
                    sampling_params=sampling_params,
                    context=context,
                    lora_request=lora_request,
                    priority=request.priority,
                    trace_headers=trace_headers,
399
                )
400
401
402
403
                generators.append(generator)
        except ValueError as e:
            # TODO: Use a vllm-specific Validation Error
            return self.create_error_response(str(e))
404

405
        assert len(generators) == 1
406
        (result_generator,) = generators
407
408
409
410

        # Store the input messages.
        if request.store:
            self.msg_store[request.request_id] = messages
411

412
413
414
415
416
417
418
419
420
421
422
423
424
        if request.background:
            created_time = int(time.time())
            response = ResponsesResponse.from_request(
                request,
                sampling_params,
                model_name=model_name,
                created_time=created_time,
                output=[],
                status="queued",
                usage=None,
            )
            async with self.response_store_lock:
                self.response_store[response.id] = response
425

426
            # Run the request in the background.
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
            if request.stream:
                task = asyncio.create_task(
                    self._run_background_request_stream(
                        request,
                        sampling_params,
                        result_generator,
                        context,
                        model_name,
                        tokenizer,
                        request_metadata,
                        created_time,
                    ),
                    name=f"create_{request.request_id}",
                )
            else:
                task = asyncio.create_task(
                    self._run_background_request(
                        request,
                        sampling_params,
                        result_generator,
                        context,
                        model_name,
                        tokenizer,
                        request_metadata,
                        created_time,
                    ),
                    name=f"create_{response.id}",
                )
455

456
457
458
459
            # For cleanup.
            response_id = response.id
            self.background_tasks[response_id] = task
            task.add_done_callback(
460
461
                lambda _: self.background_tasks.pop(response_id, None)
            )
462
463

            if request.stream:
464
                return self.responses_background_stream_generator(request.request_id)
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
            return response

        if request.stream:
            return self.responses_stream_generator(
                request,
                sampling_params,
                result_generator,
                context,
                model_name,
                tokenizer,
                request_metadata,
            )

        try:
            return await self.responses_full_generator(
                request,
                sampling_params,
                result_generator,
                context,
                model_name,
                tokenizer,
                request_metadata,
            )
        except Exception as e:
            return self.create_error_response(str(e))
490

491
492
493
    async def _make_request(
        self,
        request: ResponsesRequest,
494
        prev_response: ResponsesResponse | None,
495
496
        tokenizer: AnyTokenizer,
    ):
497
498
499
500
501
        if request.tools is None or (
            request.tool_choice == "none" and self.exclude_tools_when_tool_choice_none
        ):
            tool_dicts = None
        else:
502
503
504
505
            tool_dicts = [
                convert_tool_responses_to_completions_format(tool.model_dump())
                for tool in request.tools
            ]
506
507
508
509
510
511
        # Construct the input messages.
        messages = self._construct_input_messages(request, prev_response)
        _, request_prompts, engine_prompts = await self._preprocess_chat(
            request,
            tokenizer,
            messages,
512
513
            tool_dicts=tool_dicts,
            tool_parser=self.tool_parser,
514
515
516
517
518
519
520
521
            chat_template=self.chat_template,
            chat_template_content_format=self.chat_template_content_format,
        )
        return messages, request_prompts, engine_prompts

    def _make_request_with_harmony(
        self,
        request: ResponsesRequest,
522
        prev_response: ResponsesResponse | None,
523
524
525
    ):
        if request.tool_choice != "auto":
            raise NotImplementedError(
526
527
528
                "Only 'auto' tool_choice is supported in response API with Harmony"
            )
        messages = self._construct_input_messages_with_harmony(request, prev_response)
529
530
        prompt_token_ids = render_for_completion(messages)
        engine_prompt = EngineTokensPrompt(prompt_token_ids=prompt_token_ids)
531
532
533
534
535

        # Add cache_salt if provided in the request
        if request.cache_salt is not None:
            engine_prompt["cache_salt"] = request.cache_salt

536
537
        return messages, [prompt_token_ids], [engine_prompt]

538
539
540
541
542
543
    async def _initialize_tool_sessions(
        self,
        request: ResponsesRequest,
        context: ConversationContext,
        exit_stack: AsyncExitStack,
    ):
544
545
546
547
        # we should only initialize the tool session if the request needs tools
        if len(request.tools) == 0:
            return
        mcp_tools = {
548
            tool.server_label: tool for tool in request.tools if tool.type == "mcp"
549
        }
550
551
552
        await context.init_tool_sessions(
            self.tool_server, exit_stack, request.request_id, mcp_tools
        )
553

554
555
556
557
    async def responses_full_generator(
        self,
        request: ResponsesRequest,
        sampling_params: SamplingParams,
558
        result_generator: AsyncIterator[ConversationContext],
559
        context: ConversationContext,
560
561
562
        model_name: str,
        tokenizer: AnyTokenizer,
        request_metadata: RequestResponseMetadata,
563
564
        created_time: int | None = None,
    ) -> ErrorResponse | ResponsesResponse:
565
566
567
        if created_time is None:
            created_time = int(time.time())

568
569
        async with AsyncExitStack() as exit_stack:
            try:
570
                await self._initialize_tool_sessions(request, context, exit_stack)
571
572
573
574
575
576
577
                async for _ in result_generator:
                    pass
            except asyncio.CancelledError:
                return self.create_error_response("Client disconnected")
            except ValueError as e:
                # TODO: Use a vllm-specific Validation Error
                return self.create_error_response(str(e))
578

579
580
581
582
583
        # NOTE: Implementation of stauts is still WIP, but for now
        # we guarantee that if the status is not "completed", it is accurate.
        # "completed" is implemented as the "catch-all" for now.
        status: ResponseStatus = "completed"

584
585
        input_messages = None
        output_messages = None
586
587
588
        if self.use_harmony:
            assert isinstance(context, HarmonyContext)
            output = self._make_response_output_items_with_harmony(context)
589
            if request.enable_response_messages:
590
591
                input_messages = context.messages[: context.num_init_messages]
                output_messages = context.messages[context.num_init_messages :]
592
            num_tool_output_tokens = context.num_tool_output_tokens
593
594
595
596
597
598
599
            if len(output) > 0:
                if context.finish_reason == "length":
                    status = "incomplete"
                elif context.finish_reason == "abort":
                    status = "cancelled"
            else:
                status = "incomplete"
600
        else:
601
602
603
604
605
606
            assert isinstance(context, SimpleContext)
            final_res = context.last_output
            assert final_res is not None
            assert len(final_res.outputs) == 1
            final_output = final_res.outputs[0]

607
            output = self._make_response_output_items(request, final_output, tokenizer)
608

609
610
611
612
            # TODO: context for non-gptoss models doesn't use messages
            # so we can't get them out yet
            if request.enable_response_messages:
                raise NotImplementedError(
613
614
                    "enable_response_messages is currently only supported for gpt-oss"
                )
615
616
            # Calculate usage.
            assert final_res.prompt_token_ids is not None
617
618
            num_tool_output_tokens = 0

619
620
621
622
623
        assert isinstance(context, (SimpleContext, HarmonyContext))
        num_prompt_tokens = context.num_prompt_tokens
        num_generated_tokens = context.num_output_tokens
        num_cached_tokens = context.num_cached_tokens
        num_reasoning_tokens = context.num_reasoning_tokens
624
625
626
627

        usage = ResponseUsage(
            input_tokens=num_prompt_tokens,
            output_tokens=num_generated_tokens,
628
            total_tokens=num_prompt_tokens + num_generated_tokens,
629
630
631
632
633
634
635
636
637
            input_tokens_details=InputTokensDetails(
                cached_tokens=num_cached_tokens,
                input_tokens_per_turn=[
                    turn.input_tokens for turn in context.all_turn_metrics
                ],
                cached_tokens_per_turn=[
                    turn.cached_input_tokens for turn in context.all_turn_metrics
                ],
            ),
638
            output_tokens_details=OutputTokensDetails(
639
                reasoning_tokens=num_reasoning_tokens,
640
                tool_output_tokens=num_tool_output_tokens,
641
642
643
644
645
646
                output_tokens_per_turn=[
                    turn.output_tokens for turn in context.all_turn_metrics
                ],
                tool_output_tokens_per_turn=[
                    turn.tool_output_tokens for turn in context.all_turn_metrics
                ],
647
            ),
648
649
650
651
        )
        response = ResponsesResponse.from_request(
            request,
            sampling_params,
652
653
            input_messages=input_messages,
            output_messages=output_messages,
654
655
656
            model_name=model_name,
            created_time=created_time,
            output=output,
657
            status=status,
658
659
660
661
662
663
664
            usage=usage,
        )

        if request.store:
            async with self.response_store_lock:
                stored_response = self.response_store.get(response.id)
                # If the response is already cancelled, don't update it.
665
                if stored_response is None or stored_response.status != "cancelled":
666
667
668
                    self.response_store[response.id] = response
        return response

669
670
671
672
673
674
    def _topk_logprobs(
        self,
        logprobs: dict[int, SampleLogprob],
        top_logprobs: int,
        tokenizer: AnyTokenizer,
    ) -> list[LogprobTopLogprob]:
675
676
677
678
679
        """Returns the top-k logprobs from the logprobs dictionary."""
        out = []
        for i, (token_id, _logprob) in enumerate(logprobs.items()):
            if i >= top_logprobs:
                break
680
681
682
683
684
            text = (
                _logprob.decoded_token
                if _logprob.decoded_token is not None
                else tokenizer.decode([token_id])
            )
685
686
687
688
689
            out.append(
                LogprobTopLogprob(
                    token=text,
                    logprob=max(_logprob.logprob, -9999.0),
                    bytes=list(text.encode("utf-8", errors="replace")),
690
691
                )
            )
692
693
694
        return out

    def _create_response_logprobs(
695
696
        self,
        token_ids: Sequence[int],
697
        logprobs: SampleLogprobs | None,
698
        tokenizer: AnyTokenizer,
699
        top_logprobs: int | None = None,
700
    ) -> list[Logprob]:
701
702
        assert logprobs is not None, "logprobs must be provided"
        assert len(token_ids) == len(logprobs), (
703
704
            "token_ids and logprobs.token_ids must have the same length"
        )
705
706
707
708
        out = []
        for i, token_id in enumerate(token_ids):
            logprob = logprobs[i]
            token_logprob = logprob[token_id]
709
710
711
712
713
            text = (
                token_logprob.decoded_token
                if token_logprob.decoded_token is not None
                else tokenizer.decode([token_id])
            )
714
715
716
717
718
            out.append(
                Logprob(
                    token=text,
                    logprob=max(token_logprob.logprob, -9999.0),
                    bytes=list(text.encode("utf-8", errors="replace")),
719
720
721
722
723
724
725
                    top_logprobs=(
                        self._topk_logprobs(
                            logprob, top_logprobs=top_logprobs, tokenizer=tokenizer
                        )
                        if top_logprobs
                        else []
                    ),
726
727
                )
            )
728
729
        return out

730
731
732
    def _create_stream_response_logprobs(
        self,
        token_ids: Sequence[int],
733
        logprobs: SampleLogprobs | None,
734
        tokenizer: AnyTokenizer,
735
        top_logprobs: int | None = None,
736
    ) -> list[response_text_delta_event.Logprob]:
737
738
739
740
741
742
        lgs = self._create_response_logprobs(
            token_ids=token_ids,
            logprobs=logprobs,
            tokenizer=tokenizer,
            top_logprobs=top_logprobs,
        )
743
744
745
746
747
748
        return [
            response_text_delta_event.Logprob(
                token=lg.token,
                logprob=lg.logprob,
                top_logprobs=[
                    response_text_delta_event.LogprobTopLogprob(
749
750
                        token=tl.token, logprob=tl.logprob
                    )
751
                    for tl in lg.top_logprobs
752
753
754
                ],
            )
            for lg in lgs
755
756
        ]

757
758
759
760
761
762
763
764
765
766
767
768
769
    def _make_response_output_items(
        self,
        request: ResponsesRequest,
        final_output: CompletionOutput,
        tokenizer: AnyTokenizer,
    ) -> list[ResponseOutputItem]:
        if self.reasoning_parser:
            try:
                reasoning_parser = self.reasoning_parser(tokenizer)
            except RuntimeError as e:
                logger.exception("Error in reasoning parser creation.")
                raise e

770
            reasoning, content = reasoning_parser.extract_reasoning(
771
772
                final_output.text, request=request
            )
773
        else:
774
            reasoning = None
775
776
            content = final_output.text

777
778
779
780
781
        # Log complete response if output logging is enabled
        if self.enable_log_outputs and self.request_logger:
            output_text = ""
            if content:
                output_text = content
782
783
            elif reasoning:
                output_text = f"[reasoning: {reasoning}]"
784
785
786
787
788
789
790
791
792
793
794

            if output_text:
                self.request_logger.log_outputs(
                    request_id=request.request_id,
                    outputs=output_text,
                    output_token_ids=final_output.token_ids,
                    finish_reason=final_output.finish_reason,
                    is_streaming=False,
                    delta=False,
                )

795
796
        reasoning_item = None
        message_item = None
797
        if reasoning:
798
799
800
801
802
            reasoning_item = ResponseReasoningItem(
                id=f"rs_{random_uuid()}",
                summary=[],
                type="reasoning",
                content=[
803
                    ResponseReasoningTextContent(text=reasoning, type="reasoning_text")
804
805
806
                ],
                status=None,  # NOTE: Only the last output item has status.
            )
807
808
809
810
811
812
813
        tool_calls, content = self._parse_tool_calls_from_content(
            request=request,
            tokenizer=tokenizer,
            content=content,
            enable_auto_tools=self.enable_auto_tools,
            tool_parser_cls=self.tool_parser,
        )
814
815
816
817
818
        if content:
            output_text = ResponseOutputText(
                text=content,
                annotations=[],  # TODO
                type="output_text",
819
820
821
822
823
824
825
826
827
828
                logprobs=(
                    self._create_response_logprobs(
                        token_ids=final_output.token_ids,
                        logprobs=final_output.logprobs,
                        tokenizer=tokenizer,
                        top_logprobs=request.top_logprobs,
                    )
                    if request.is_include_output_logprobs()
                    else None
                ),
829
            )
830
            message_item = ResponseOutputMessage(
831
832
833
834
835
836
                id=f"msg_{random_uuid()}",
                content=[output_text],
                role="assistant",
                status="completed",
                type="message",
            )
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
        outputs = []

        if reasoning_item:
            outputs.append(reasoning_item)
        if message_item:
            outputs.append(message_item)
        if tool_calls:
            tool_call_items = [
                ResponseFunctionToolCall(
                    id=f"fc_{random_uuid()}",
                    call_id=f"call_{random_uuid()}",
                    type="function_call",
                    status="completed",
                    name=tool_call.name,
                    arguments=tool_call.arguments,
                )
                for tool_call in tool_calls
            ]
            outputs.extend(tool_call_items)
        return outputs
857
858
859
860
861

    def _make_response_output_items_with_harmony(
        self,
        context: HarmonyContext,
    ) -> list[ResponseOutputItem]:
862
        output_items: list[ResponseOutputItem] = []
863
864
865
866
867
868
869
870
871
        num_init_messages = context.num_init_messages
        for msg in context.messages[num_init_messages:]:
            output_items.extend(parse_output_message(msg))
        # Handle the generation stopped in the middle (if any).
        last_items = parse_remaining_state(context.parser)
        if last_items:
            output_items.extend(last_items)
        return output_items

872
873
874
    def _construct_input_messages(
        self,
        request: ResponsesRequest,
875
        prev_response: ResponsesResponse | None = None,
876
877
878
    ) -> list[ChatCompletionMessageParam]:
        messages: list[ChatCompletionMessageParam] = []
        if request.instructions:
879
880
881
882
883
884
            messages.append(
                {
                    "role": "system",
                    "content": request.instructions,
                }
            )
885
886
887
888
889
890
891
892
893
894
895
896

        # Prepend the conversation history.
        if prev_response is not None:
            # Add the previous messages.
            prev_msg = self.msg_store[prev_response.id]
            messages.extend(prev_msg)

            # Add the previous output.
            for output_item in prev_response.output:
                # NOTE: We skip the reasoning output.
                if isinstance(output_item, ResponseOutputMessage):
                    for content in output_item.content:
897
898
899
900
901
902
                        messages.append(
                            {
                                "role": "assistant",
                                "content": content.text,
                            }
                        )
903
904

        # Append the new input.
905
        # Responses API supports simple text inputs without chat format.
906
907
908
        if isinstance(request.input, str):
            messages.append({"role": "user", "content": request.input})
        else:
909
910
            for item in request.input:
                messages.append(construct_chat_message_with_tool_call(item))
911
912
        return messages

913
    def _construct_harmony_system_input_message(
914
        self, request: ResponsesRequest, with_custom_tools: bool, tool_types: set[str]
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
    ) -> OpenAIHarmonyMessage:
        reasoning_effort = request.reasoning.effort if request.reasoning else None
        enable_browser = (
            "web_search_preview" in tool_types
            and self.tool_server is not None
            and self.tool_server.has_tool("browser")
        )
        enable_code_interpreter = (
            "code_interpreter" in tool_types
            and self.tool_server is not None
            and self.tool_server.has_tool("python")
        )
        enable_container = (
            "container" in tool_types
            and self.tool_server is not None
            and self.tool_server.has_tool("container")
        )
        sys_msg = get_system_message(
            reasoning_effort=reasoning_effort,
            browser_description=(
                self.tool_server.get_tool_description("browser")
                if enable_browser and self.tool_server is not None
                else None
            ),
            python_description=(
                self.tool_server.get_tool_description("python")
                if enable_code_interpreter and self.tool_server is not None
                else None
            ),
            container_description=(
                self.tool_server.get_tool_description("container")
                if enable_container and self.tool_server is not None
                else None
            ),
            instructions=request.instructions,
            with_custom_tools=with_custom_tools,
        )
        return sys_msg

954
955
956
    def _construct_input_messages_with_harmony(
        self,
        request: ResponsesRequest,
957
        prev_response: ResponsesResponse | None,
958
959
960
961
    ) -> list[OpenAIHarmonyMessage]:
        messages: list[OpenAIHarmonyMessage] = []
        if prev_response is None:
            # New conversation.
962
            tool_types = extract_tool_types(request.tools)
963
            with_custom_tools = has_custom_tools(tool_types)
964
965
966

            sys_msg = self._construct_harmony_system_input_message(
                request, with_custom_tools, tool_types
967
968
            )
            messages.append(sys_msg)
969
970
            if with_custom_tools:
                dev_msg = get_developer_message(
971
972
                    instructions=request.instructions, tools=request.tools
                )
973
                messages.append(dev_msg)
974
975
            messages += construct_harmony_previous_input_messages(request)

976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
        else:
            # Continue the previous conversation.
            # FIXME(woosuk): Currently, request params like reasoning and
            # instructions are ignored.
            prev_msgs = self.msg_store[prev_response.id]
            # Remove the previous chain-of-thoughts if there is a new "final"
            # message. Note that this also removes these messages from the
            # msg_store.
            if len(prev_msgs) > 0:
                last_msg = prev_msgs[-1]
                assert isinstance(last_msg, OpenAIHarmonyMessage)
                if last_msg.channel == "final":
                    prev_final_msg_idx = -1
                    for i in range(len(prev_msgs) - 2, -1, -1):
                        prev_msg_i = prev_msgs[i]
                        assert isinstance(prev_msg_i, OpenAIHarmonyMessage)
                        if prev_msg_i.channel == "final":
                            prev_final_msg_idx = i
                            break
995
996
                    recent_turn_msgs = prev_msgs[prev_final_msg_idx + 1 :]
                    del prev_msgs[prev_final_msg_idx + 1 :]
997
998
999
1000
1001
1002
                    for msg in recent_turn_msgs:
                        assert isinstance(msg, OpenAIHarmonyMessage)
                        if msg.channel != "analysis":
                            prev_msgs.append(msg)
            messages.extend(prev_msgs)
        # Append the new input.
co63oc's avatar
co63oc committed
1003
        # Responses API supports simple text inputs without chat format.
1004
1005
1006
1007
1008
1009
1010
1011
        if isinstance(request.input, str):
            messages.append(get_user_message(request.input))
        else:
            if prev_response is not None:
                prev_outputs = copy(prev_response.output)
            else:
                prev_outputs = []
            for response_msg in request.input:
1012
                messages.append(parse_response_input(response_msg, prev_outputs))
1013
                # User passes in a tool call request and its output. We need
1014
1015
1016
1017
1018
1019
1020
                # to add the tool call request to prev_outputs so that the
                # parse_response_input can find the tool call request when
                # parsing the tool call output.
                if isinstance(response_msg, ResponseFunctionToolCall):
                    prev_outputs.append(response_msg)
        return messages

1021
1022
1023
1024
1025
1026
    async def _run_background_request_stream(
        self,
        request: ResponsesRequest,
        *args,
        **kwargs,
    ):
1027
        event_deque: deque[StreamingResponsesResponse] = deque()
1028
1029
1030
1031
        new_event_signal = asyncio.Event()
        self.event_store[request.request_id] = (event_deque, new_event_signal)
        response = None
        try:
1032
            generator = self.responses_stream_generator(request, *args, **kwargs)
1033
1034
1035
1036
            async for event in generator:
                event_deque.append(event)
                new_event_signal.set()  # Signal new event available
        except Exception as e:
1037
            logger.exception("Background request failed for %s", request.request_id)
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
            response = self.create_error_response(str(e))
        finally:
            new_event_signal.set()

        if response is not None and isinstance(response, ErrorResponse):
            # If the request has failed, update the status to "failed".
            response_id = request.request_id
            async with self.response_store_lock:
                stored_response = self.response_store.get(response_id)
                assert stored_response is not None
                if stored_response.status not in ("completed", "cancelled"):
                    stored_response.status = "failed"

1051
1052
1053
1054
1055
1056
1057
    async def _run_background_request(
        self,
        request: ResponsesRequest,
        *args,
        **kwargs,
    ):
        try:
1058
            response = await self.responses_full_generator(request, *args, **kwargs)
1059
        except Exception as e:
1060
            logger.exception("Background request failed for %s", request.request_id)
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
            response = self.create_error_response(str(e))

        if isinstance(response, ErrorResponse):
            # If the request has failed, update the status to "failed".
            response_id = request.request_id
            async with self.response_store_lock:
                stored_response = self.response_store.get(response_id)
                assert stored_response is not None
                if stored_response.status not in ("completed", "cancelled"):
                    stored_response.status = "failed"

1072
1073
1074
    async def responses_background_stream_generator(
        self,
        response_id: str,
1075
        starting_after: int | None = None,
1076
    ) -> AsyncGenerator[StreamingResponsesResponse, None]:
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
        if response_id not in self.event_store:
            raise ValueError(f"Unknown response_id: {response_id}")

        event_deque, new_event_signal = self.event_store[response_id]
        start_index = 0 if starting_after is None else starting_after + 1
        current_index = start_index

        while True:
            new_event_signal.clear()

            # Yield existing events from start_index
            while current_index < len(event_deque):
                event = event_deque[current_index]
                yield event
1091
                if getattr(event, "type", "unknown") == "response.completed":
1092
                    return
1093
1094
1095
1096
                current_index += 1

            await new_event_signal.wait()

1097
1098
1099
    async def retrieve_responses(
        self,
        response_id: str,
1100
1101
1102
1103
1104
1105
1106
        starting_after: int | None,
        stream: bool | None,
    ) -> (
        ErrorResponse
        | ResponsesResponse
        | AsyncGenerator[StreamingResponsesResponse, None]
    ):
1107
1108
1109
1110
1111
        async with self.response_store_lock:
            response = self.response_store.get(response_id)

        if response is None:
            return self._make_not_found_error(response_id)
1112
1113
1114
1115
1116
1117

        if stream:
            return self.responses_background_stream_generator(
                response_id,
                starting_after,
            )
1118
1119
1120
1121
1122
        return response

    async def cancel_responses(
        self,
        response_id: str,
1123
    ) -> ErrorResponse | ResponsesResponse:
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
        async with self.response_store_lock:
            response = self.response_store.get(response_id)
            if response is None:
                return self._make_not_found_error(response_id)

            prev_status = response.status
            if prev_status not in ("queued", "in_progress"):
                return self.create_error_response(
                    err_type="invalid_request_error",
                    message="Cannot cancel a synchronous response.",
                )

            # Update the status to "cancelled".
            response.status = "cancelled"

        # Abort the request.
1140
        if task := self.background_tasks.get(response_id):
1141
1142
1143
1144
            task.cancel()
            try:
                await task
            except asyncio.CancelledError:
1145
                logger.exception("Background task for %s was cancelled", response_id)
1146
1147
1148
1149
1150
1151
1152
1153
        return response

    def _make_not_found_error(self, response_id: str) -> ErrorResponse:
        return self.create_error_response(
            err_type="invalid_request_error",
            message=f"Response with id '{response_id}' not found.",
            status_code=HTTPStatus.NOT_FOUND,
        )
1154
1155
1156
1157

    def _make_store_not_supported_error(self) -> ErrorResponse:
        return self.create_error_response(
            err_type="invalid_request_error",
1158
1159
1160
1161
1162
1163
            message=(
                "`store=True` (default) is not supported. Please set "
                "`store=False` in Responses API or set "
                "`VLLM_ENABLE_RESPONSES_API_STORE=1` in the env var when "
                "starting the vLLM server."
            ),
1164
1165
            status_code=HTTPStatus.BAD_REQUEST,
        )
1166

1167
    async def _process_simple_streaming_events(
1168
1169
1170
        self,
        request: ResponsesRequest,
        sampling_params: SamplingParams,
1171
        result_generator: AsyncIterator[ConversationContext | None],
1172
1173
1174
1175
        context: ConversationContext,
        model_name: str,
        tokenizer: AnyTokenizer,
        request_metadata: RequestResponseMetadata,
1176
        created_time: int,
1177
        _increment_sequence_number_and_return: Callable[
1178
1179
            [StreamingResponsesResponse], StreamingResponsesResponse
        ],
1180
    ) -> AsyncGenerator[StreamingResponsesResponse, None]:
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
        current_content_index = 0
        current_output_index = 0
        current_item_id = ""
        reasoning_parser = None
        if self.reasoning_parser:
            reasoning_parser = self.reasoning_parser(tokenizer)
        previous_text = ""
        previous_token_ids: list[int] = []
        first_delta_sent = False
        previous_delta_messages: list[DeltaMessage] = []
        async for ctx in result_generator:
            assert isinstance(ctx, SimpleContext)
            if ctx.last_output is None:
                continue
            if ctx.last_output.outputs:
                output = ctx.last_output.outputs[0]
                if reasoning_parser:
1198
1199
1200
1201
1202
1203
1204
                    delta_message = reasoning_parser.extract_reasoning_streaming(
                        previous_text=previous_text,
                        current_text=previous_text + output.text,
                        delta_text=output.text,
                        previous_token_ids=previous_token_ids,
                        current_token_ids=previous_token_ids + output.token_ids,
                        delta_token_ids=output.token_ids,
1205
1206
                    )
                else:
1207
1208
1209
                    delta_message = DeltaMessage(
                        content=output.text,
                    )
1210
1211
1212
1213
1214
1215
                previous_text += output.text
                previous_token_ids += output.token_ids
                if not delta_message:
                    continue
                if not first_delta_sent:
                    current_item_id = str(uuid.uuid4())
1216
                    if delta_message.reasoning:
1217
                        yield _increment_sequence_number_and_return(
1218
1219
1220
1221
                            ResponseOutputItemAddedEvent(
                                type="response.output_item.added",
                                sequence_number=-1,
                                output_index=current_output_index,
1222
                                item=ResponseReasoningItem(
1223
1224
1225
1226
1227
                                    type="reasoning",
                                    id=current_item_id,
                                    summary=[],
                                    status="in_progress",
                                ),
1228
1229
                            )
                        )
1230
                    else:
1231
                        yield _increment_sequence_number_and_return(
1232
1233
1234
1235
                            ResponseOutputItemAddedEvent(
                                type="response.output_item.added",
                                sequence_number=-1,
                                output_index=current_output_index,
1236
                                item=ResponseOutputMessage(
1237
1238
1239
1240
1241
1242
                                    id=current_item_id,
                                    type="message",
                                    role="assistant",
                                    content=[],
                                    status="in_progress",
                                ),
1243
1244
                            )
                        )
1245
                    yield _increment_sequence_number_and_return(
1246
                        ResponseContentPartAddedEvent(
1247
1248
1249
1250
1251
                            type="response.content_part.added",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
                            content_index=current_content_index,
1252
                            part=ResponseOutputText(
1253
1254
1255
1256
1257
                                type="output_text",
                                text="",
                                annotations=[],
                                logprobs=[],
                            ),
1258
1259
                        )
                    )
1260
1261
1262
1263
1264
1265
                    current_content_index += 1
                    first_delta_sent = True
                # todo(kebe7jun) tool call support

                # check delta message and previous delta message are
                # same as content or reasoning content
1266
1267
                if (
                    previous_delta_messages
1268
                    and previous_delta_messages[-1].reasoning is not None
1269
1270
                    and delta_message.content is not None
                ):
1271
1272
                    # from reasoning to normal content, send done
                    # event for reasoning
1273
                    reason_content = "".join(
1274
                        pm.reasoning
1275
                        for pm in previous_delta_messages
1276
                        if pm.reasoning is not None
1277
                    )
1278
                    yield _increment_sequence_number_and_return(
1279
1280
1281
1282
1283
1284
1285
                        ResponseReasoningTextDoneEvent(
                            type="response.reasoning_text.done",
                            item_id=current_item_id,
                            sequence_number=-1,
                            output_index=current_output_index,
                            content_index=current_content_index,
                            text=reason_content,
1286
1287
                        )
                    )
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
                    current_content_index = 0
                    reasoning_item = ResponseReasoningItem(
                        type="reasoning",
                        content=[
                            ResponseReasoningTextContent(
                                text=reason_content,
                                type="reasoning_text",
                            ),
                        ],
                        status="completed",
                        id=current_item_id,
                        summary=[],
                    )
1301
                    yield _increment_sequence_number_and_return(
1302
1303
1304
1305
1306
                        ResponseOutputItemDoneEvent(
                            type="response.output_item.done",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item=reasoning_item,
1307
1308
                        )
                    )
1309
                    yield _increment_sequence_number_and_return(
1310
                        ResponseOutputItemAddedEvent(
1311
1312
1313
                            type="response.output_item.added",
                            sequence_number=-1,
                            output_index=current_output_index,
1314
                            item=ResponseOutputMessage(
1315
1316
1317
1318
1319
1320
                                id=current_item_id,
                                type="message",
                                role="assistant",
                                content=[],
                                status="in_progress",
                            ),
1321
1322
                        )
                    )
1323
1324
                    current_output_index += 1
                    current_item_id = str(uuid.uuid4())
1325
                    yield _increment_sequence_number_and_return(
1326
                        ResponseContentPartAddedEvent(
1327
1328
1329
1330
1331
                            type="response.content_part.added",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
                            content_index=current_content_index,
1332
                            part=ResponseOutputText(
1333
1334
1335
1336
1337
                                type="output_text",
                                text="",
                                annotations=[],
                                logprobs=[],
                            ),
1338
1339
                        )
                    )
1340
1341
1342
                    current_content_index += 1
                    # reset previous delta messages
                    previous_delta_messages = []
1343

1344
                if delta_message.reasoning is not None:
1345
                    yield _increment_sequence_number_and_return(
1346
1347
1348
1349
1350
1351
                        ResponseReasoningTextDeltaEvent(
                            type="response.reasoning_text.delta",
                            sequence_number=-1,
                            content_index=current_content_index,
                            output_index=current_output_index,
                            item_id=current_item_id,
1352
                            delta=delta_message.reasoning,
1353
1354
                        )
                    )
1355
                elif delta_message.content is not None:
1356
                    yield _increment_sequence_number_and_return(
1357
                        ResponseTextDeltaEvent(
1358
1359
1360
1361
1362
1363
                            type="response.output_text.delta",
                            sequence_number=-1,
                            content_index=current_content_index,
                            output_index=current_output_index,
                            item_id=current_item_id,
                            delta=delta_message.content,
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
                            logprobs=(
                                self._create_stream_response_logprobs(
                                    token_ids=output.token_ids,
                                    logprobs=output.logprobs,
                                    tokenizer=tokenizer,
                                    top_logprobs=request.top_logprobs,
                                )
                                if request.is_include_output_logprobs()
                                else []
                            ),
1374
1375
                        )
                    )
1376
1377
1378
1379
                current_content_index += 1

                previous_delta_messages.append(delta_message)
        if previous_delta_messages:
1380
            if previous_delta_messages[-1].reasoning is not None:
1381
                reason_content = "".join(
1382
                    pm.reasoning
1383
                    for pm in previous_delta_messages
1384
                    if pm.reasoning is not None
1385
                )
1386
                yield _increment_sequence_number_and_return(
1387
1388
1389
1390
1391
1392
1393
                    ResponseReasoningTextDoneEvent(
                        type="response.reasoning_text.done",
                        item_id=current_item_id,
                        sequence_number=-1,
                        output_index=current_output_index,
                        content_index=current_content_index,
                        text=reason_content,
1394
1395
                    )
                )
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
                current_content_index += 1
                reasoning_item = ResponseReasoningItem(
                    type="reasoning",
                    content=[
                        ResponseReasoningTextContent(
                            text=reason_content,
                            type="reasoning_text",
                        ),
                    ],
                    status="completed",
                    id=current_item_id,
                    summary=[],
                )
1409
                yield _increment_sequence_number_and_return(
1410
1411
1412
1413
1414
                    ResponseOutputItemDoneEvent(
                        type="response.output_item.done",
                        sequence_number=-1,
                        output_index=current_output_index,
                        item=reasoning_item,
1415
1416
                    )
                )
1417
            elif previous_delta_messages[-1].content is not None:
1418
1419
1420
1421
1422
                final_content = "".join(
                    pm.content
                    for pm in previous_delta_messages
                    if pm.content is not None
                )
1423
                yield _increment_sequence_number_and_return(
1424
                    ResponseTextDoneEvent(
1425
1426
1427
1428
1429
1430
1431
                        type="response.output_text.done",
                        sequence_number=-1,
                        output_index=current_output_index,
                        content_index=current_content_index,
                        text=final_content,
                        logprobs=[],
                        item_id=current_item_id,
1432
1433
                    )
                )
1434
1435
1436
1437
1438
1439
                current_content_index += 1
                part = ResponseOutputText(
                    text=final_content,
                    type="output_text",
                    annotations=[],
                )
1440
                yield _increment_sequence_number_and_return(
1441
                    ResponseContentPartDoneEvent(
1442
1443
1444
1445
1446
1447
                        type="response.content_part.done",
                        sequence_number=-1,
                        item_id=current_item_id,
                        output_index=current_output_index,
                        content_index=current_content_index,
                        part=part,
1448
1449
                    )
                )
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
                current_content_index += 1
                item = ResponseOutputMessage(
                    type="message",
                    role="assistant",
                    content=[
                        part,
                    ],
                    status="completed",
                    id=current_item_id,
                    summary=[],
                )
1461
                yield _increment_sequence_number_and_return(
1462
1463
1464
1465
1466
                    ResponseOutputItemDoneEvent(
                        type="response.output_item.done",
                        sequence_number=-1,
                        output_index=current_output_index,
                        item=item,
1467
1468
                    )
                )
1469
1470
1471
1472
1473

    async def _process_harmony_streaming_events(
        self,
        request: ResponsesRequest,
        sampling_params: SamplingParams,
1474
        result_generator: AsyncIterator[ConversationContext | None],
1475
1476
1477
1478
1479
        context: ConversationContext,
        model_name: str,
        tokenizer: AnyTokenizer,
        request_metadata: RequestResponseMetadata,
        created_time: int,
1480
        _increment_sequence_number_and_return: Callable[
1481
1482
            [StreamingResponsesResponse], StreamingResponsesResponse
        ],
1483
    ) -> AsyncGenerator[StreamingResponsesResponse, None]:
1484
        current_content_index = -1
1485
        current_output_index = 0
1486
        current_item_id: str = ""
1487
        sent_output_item_added = False
1488
        is_first_function_call_delta = False
1489
1490
1491
1492
1493
1494
        async for ctx in result_generator:
            assert isinstance(ctx, StreamingHarmonyContext)

            if ctx.is_expecting_start():
                current_output_index += 1
                sent_output_item_added = False
1495
                is_first_function_call_delta = False
1496
1497
1498
                if len(ctx.parser.messages) > 0:
                    previous_item = ctx.parser.messages[-1]
                    if previous_item.recipient is not None:
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
                        # Deal with tool call
                        if previous_item.recipient.startswith("functions."):
                            function_name = previous_item.recipient[len("functions.") :]
                            yield _increment_sequence_number_and_return(
                                ResponseFunctionCallArgumentsDoneEvent(
                                    type="response.function_call_arguments.done",
                                    arguments=previous_item.content[0].text,
                                    name=function_name,
                                    item_id=current_item_id,
                                    output_index=current_output_index,
                                    sequence_number=-1,
                                )
                            )
                            function_call_item = ResponseFunctionToolCall(
                                type="function_call",
                                arguments=previous_item.content[0].text,
                                name=function_name,
                                item_id=current_item_id,
                                output_index=current_output_index,
                                sequence_number=-1,
                                call_id=f"fc_{random_uuid()}",
                                status="completed",
                            )
                            yield _increment_sequence_number_and_return(
                                ResponseOutputItemDoneEvent(
                                    type="response.output_item.done",
                                    sequence_number=-1,
                                    output_index=current_output_index,
                                    item=function_call_item,
                                )
                            )
1530
                    elif previous_item.channel == "analysis":
1531
1532
1533
1534
                        content = ResponseReasoningTextContent(
                            text=previous_item.content[0].text,
                            type="reasoning_text",
                        )
1535
1536
                        reasoning_item = ResponseReasoningItem(
                            type="reasoning",
1537
                            content=[content],
1538
                            status="completed",
1539
1540
                            id=current_item_id,
                            summary=[],
1541
                        )
1542
                        yield _increment_sequence_number_and_return(
1543
1544
1545
1546
1547
1548
1549
                            ResponseReasoningTextDoneEvent(
                                type="response.reasoning_text.done",
                                item_id=current_item_id,
                                sequence_number=-1,
                                output_index=current_output_index,
                                content_index=current_content_index,
                                text=previous_item.content[0].text,
1550
1551
                            )
                        )
1552
1553
1554
1555
1556
1557
1558
1559
                        yield _increment_sequence_number_and_return(
                            ResponseReasoningPartDoneEvent(
                                type="response.reasoning_part.done",
                                sequence_number=-1,
                                item_id=current_item_id,
                                output_index=current_output_index,
                                content_index=current_content_index,
                                part=content,
1560
1561
                            )
                        )
1562
                        yield _increment_sequence_number_and_return(
1563
1564
1565
1566
1567
                            ResponseOutputItemDoneEvent(
                                type="response.output_item.done",
                                sequence_number=-1,
                                output_index=current_output_index,
                                item=reasoning_item,
1568
1569
                            )
                        )
1570
1571
1572
1573
1574
1575
                    elif previous_item.channel == "final":
                        text_content = ResponseOutputText(
                            type="output_text",
                            text=previous_item.content[0].text,
                            annotations=[],
                        )
1576
                        yield _increment_sequence_number_and_return(
1577
                            ResponseTextDoneEvent(
1578
1579
1580
1581
1582
1583
1584
                                type="response.output_text.done",
                                sequence_number=-1,
                                output_index=current_output_index,
                                content_index=current_content_index,
                                text=previous_item.content[0].text,
                                logprobs=[],
                                item_id=current_item_id,
1585
1586
                            )
                        )
1587
                        yield _increment_sequence_number_and_return(
1588
1589
1590
1591
1592
1593
1594
                            ResponseContentPartDoneEvent(
                                type="response.content_part.done",
                                sequence_number=-1,
                                item_id=current_item_id,
                                output_index=current_output_index,
                                content_index=current_content_index,
                                part=text_content,
1595
1596
                            )
                        )
1597
                        yield _increment_sequence_number_and_return(
1598
                            ResponseOutputItemDoneEvent(
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
                                type="response.output_item.done",
                                sequence_number=-1,
                                output_index=current_output_index,
                                item=ResponseOutputMessage(
                                    id=current_item_id,
                                    type="message",
                                    role="assistant",
                                    content=[text_content],
                                    status="completed",
                                ),
1609
1610
                            )
                        )
1611

1612
            # stream the output of a harmony message
1613
            if ctx.parser.last_content_delta:
1614
1615
1616
1617
                if (
                    ctx.parser.current_channel == "final"
                    and ctx.parser.current_recipient is None
                ):
1618
1619
                    if not sent_output_item_added:
                        sent_output_item_added = True
1620
                        current_item_id = f"msg_{random_uuid()}"
1621
                        yield _increment_sequence_number_and_return(
1622
1623
1624
1625
                            ResponseOutputItemAddedEvent(
                                type="response.output_item.added",
                                sequence_number=-1,
                                output_index=current_output_index,
1626
                                item=ResponseOutputMessage(
1627
1628
1629
1630
1631
1632
                                    id=current_item_id,
                                    type="message",
                                    role="assistant",
                                    content=[],
                                    status="in_progress",
                                ),
1633
1634
                            )
                        )
1635
                        current_content_index += 1
1636
                        yield _increment_sequence_number_and_return(
1637
1638
1639
1640
1641
1642
                            ResponseContentPartAddedEvent(
                                type="response.content_part.added",
                                sequence_number=-1,
                                output_index=current_output_index,
                                item_id=current_item_id,
                                content_index=current_content_index,
1643
                                part=ResponseOutputText(
1644
1645
1646
1647
1648
                                    type="output_text",
                                    text="",
                                    annotations=[],
                                    logprobs=[],
                                ),
1649
1650
                            )
                        )
1651
                    yield _increment_sequence_number_and_return(
1652
                        ResponseTextDeltaEvent(
1653
1654
1655
1656
1657
1658
1659
1660
                            type="response.output_text.delta",
                            sequence_number=-1,
                            content_index=current_content_index,
                            output_index=current_output_index,
                            item_id=current_item_id,
                            delta=ctx.parser.last_content_delta,
                            # TODO, use logprobs from ctx.last_request_output
                            logprobs=[],
1661
1662
1663
1664
1665
1666
                        )
                    )
                elif (
                    ctx.parser.current_channel == "analysis"
                    and ctx.parser.current_recipient is None
                ):
1667
1668
                    if not sent_output_item_added:
                        sent_output_item_added = True
1669
                        current_item_id = f"msg_{random_uuid()}"
1670
                        yield _increment_sequence_number_and_return(
1671
1672
1673
1674
                            ResponseOutputItemAddedEvent(
                                type="response.output_item.added",
                                sequence_number=-1,
                                output_index=current_output_index,
1675
                                item=ResponseReasoningItem(
1676
1677
1678
1679
1680
                                    type="reasoning",
                                    id=current_item_id,
                                    summary=[],
                                    status="in_progress",
                                ),
1681
1682
                            )
                        )
1683
                        current_content_index += 1
1684
                        yield _increment_sequence_number_and_return(
1685
1686
                            ResponseReasoningPartAddedEvent(
                                type="response.reasoning_part.added",
1687
1688
1689
1690
                                sequence_number=-1,
                                output_index=current_output_index,
                                item_id=current_item_id,
                                content_index=current_content_index,
1691
                                part=ResponseReasoningTextContent(
1692
                                    text="",
1693
                                    type="reasoning_text",
1694
                                ),
1695
1696
                            )
                        )
1697
                    yield _increment_sequence_number_and_return(
1698
1699
1700
1701
1702
1703
1704
                        ResponseReasoningTextDeltaEvent(
                            type="response.reasoning_text.delta",
                            item_id=current_item_id,
                            output_index=current_output_index,
                            content_index=current_content_index,
                            delta=ctx.parser.last_content_delta,
                            sequence_number=-1,
1705
1706
                        )
                    )
1707
1708
1709
                # built-in tools will be triggered on the analysis channel
                # However, occasionally built-in tools will
                # still be output to commentary.
1710
1711
1712
1713
                elif (
                    ctx.parser.current_channel == "commentary"
                    or ctx.parser.current_channel == "analysis"
                ) and ctx.parser.current_recipient == "python":
1714
1715
                    if not sent_output_item_added:
                        sent_output_item_added = True
1716
                        current_item_id = f"tool_{random_uuid()}"
1717
                        yield _increment_sequence_number_and_return(
1718
1719
1720
1721
                            ResponseOutputItemAddedEvent(
                                type="response.output_item.added",
                                sequence_number=-1,
                                output_index=current_output_index,
1722
                                item=ResponseCodeInterpreterToolCallParam(
1723
1724
1725
1726
1727
1728
1729
                                    type="code_interpreter_call",
                                    id=current_item_id,
                                    code=None,
                                    container_id="auto",
                                    outputs=None,
                                    status="in_progress",
                                ),
1730
1731
                            )
                        )
1732
                        yield _increment_sequence_number_and_return(
1733
                            ResponseCodeInterpreterCallInProgressEvent(
1734
                                type="response.code_interpreter_call.in_progress",
1735
1736
1737
                                sequence_number=-1,
                                output_index=current_output_index,
                                item_id=current_item_id,
1738
1739
                            )
                        )
1740
                    yield _increment_sequence_number_and_return(
1741
1742
1743
1744
1745
1746
                        ResponseCodeInterpreterCallCodeDeltaEvent(
                            type="response.code_interpreter_call_code.delta",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
                            delta=ctx.parser.last_content_delta,
1747
1748
                        )
                    )
1749
1750

            # stream tool call outputs
1751
1752
            if ctx.is_assistant_action_turn() and len(ctx.parser.messages) > 0:
                previous_item = ctx.parser.messages[-1]
1753
1754
1755
1756
1757
1758
1759
                if (
                    self.tool_server is not None
                    and self.tool_server.has_tool("browser")
                    and previous_item.recipient is not None
                    and previous_item.recipient.startswith("browser.")
                ):
                    function_name = previous_item.recipient[len("browser.") :]
1760
1761
1762
                    action = None
                    parsed_args = json.loads(previous_item.content[0].text)
                    if function_name == "search":
1763
                        action = response_function_web_search.ActionSearch(
1764
1765
                            type="search",
                            query=parsed_args["query"],
1766
                        )
1767
                    elif function_name == "open":
1768
1769
1770
1771
1772
                        action = response_function_web_search.ActionOpenPage(
                            type="open_page",
                            # TODO: translate to url
                            url=f"cursor:{parsed_args.get('cursor', '')}",
                        )
1773
                    elif function_name == "find":
1774
1775
1776
1777
1778
1779
                        action = response_function_web_search.ActionFind(
                            type="find",
                            pattern=parsed_args["pattern"],
                            # TODO: translate to url
                            url=f"cursor:{parsed_args.get('cursor', '')}",
                        )
1780
                    else:
1781
                        raise ValueError(f"Unknown function name: {function_name}")
1782

1783
                    current_item_id = f"tool_{random_uuid()}"
1784
                    yield _increment_sequence_number_and_return(
1785
                        ResponseOutputItemAddedEvent(
1786
1787
1788
                            type="response.output_item.added",
                            sequence_number=-1,
                            output_index=current_output_index,
1789
                            item=response_function_web_search.ResponseFunctionWebSearch(
1790
1791
1792
1793
1794
1795
                                # TODO: generate a unique id for web search call
                                type="web_search_call",
                                id=current_item_id,
                                action=action,
                                status="in_progress",
                            ),
1796
1797
                        )
                    )
1798
                    yield _increment_sequence_number_and_return(
1799
1800
1801
1802
1803
                        ResponseWebSearchCallInProgressEvent(
                            type="response.web_search_call.in_progress",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
1804
1805
                        )
                    )
1806
                    yield _increment_sequence_number_and_return(
1807
1808
1809
1810
1811
                        ResponseWebSearchCallSearchingEvent(
                            type="response.web_search_call.searching",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
1812
1813
                        )
                    )
1814
1815

                    # enqueue
1816
                    yield _increment_sequence_number_and_return(
1817
1818
1819
1820
1821
                        ResponseWebSearchCallCompletedEvent(
                            type="response.web_search_call.completed",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
1822
1823
                        )
                    )
1824
                    yield _increment_sequence_number_and_return(
1825
                        ResponseOutputItemDoneEvent(
1826
1827
1828
                            type="response.output_item.done",
                            sequence_number=-1,
                            output_index=current_output_index,
1829
                            item=ResponseFunctionWebSearch(
1830
1831
1832
1833
1834
                                type="web_search_call",
                                id=current_item_id,
                                action=action,
                                status="completed",
                            ),
1835
1836
                        )
                    )
1837

1838
1839
1840
1841
1842
1843
                if (
                    self.tool_server is not None
                    and self.tool_server.has_tool("python")
                    and previous_item.recipient is not None
                    and previous_item.recipient.startswith("python")
                ):
1844
                    yield _increment_sequence_number_and_return(
1845
1846
1847
1848
1849
                        ResponseCodeInterpreterCallCodeDoneEvent(
                            type="response.code_interpreter_call_code.done",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
1850
                            code=previous_item.content[0].text,
1851
1852
                        )
                    )
1853
                    yield _increment_sequence_number_and_return(
1854
1855
1856
1857
1858
                        ResponseCodeInterpreterCallInterpretingEvent(
                            type="response.code_interpreter_call.interpreting",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
1859
1860
                        )
                    )
1861
                    yield _increment_sequence_number_and_return(
1862
1863
1864
1865
1866
                        ResponseCodeInterpreterCallCompletedEvent(
                            type="response.code_interpreter_call.completed",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item_id=current_item_id,
1867
1868
                        )
                    )
1869
                    yield _increment_sequence_number_and_return(
1870
                        ResponseOutputItemDoneEvent(
1871
1872
1873
                            type="response.output_item.done",
                            sequence_number=-1,
                            output_index=current_output_index,
1874
                            item=ResponseCodeInterpreterToolCallParam(
1875
1876
1877
1878
1879
1880
1881
1882
                                type="code_interpreter_call",
                                id=current_item_id,
                                code=previous_item.content[0].text,
                                container_id="auto",
                                # TODO: add outputs here
                                outputs=[],
                                status="completed",
                            ),
1883
1884
                        )
                    )
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
            # developer tools will be triggered on the commentary channel
            # and recipient starts with "functions.TOOL_NAME"
            if (
                ctx.parser.current_channel == "commentary"
                and ctx.parser.current_recipient
                and ctx.parser.current_recipient.startswith("functions.")
            ):
                if is_first_function_call_delta is False:
                    is_first_function_call_delta = True
                    fc_name = ctx.parser.current_recipient[len("functions.") :]
                    tool_call_item = ResponseFunctionToolCall(
                        name=fc_name,
                        type="function_call",
                        id=current_item_id,
                        call_id=f"call_{random_uuid()}",
                        arguments="",
                        status="in_progress",
                    )
                    current_item_id = f"fc_{random_uuid()}"
                    yield _increment_sequence_number_and_return(
                        ResponseOutputItemAddedEvent(
                            type="response.output_item.added",
                            sequence_number=-1,
                            output_index=current_output_index,
                            item=tool_call_item,
                        )
                    )
                else:
                    yield _increment_sequence_number_and_return(
                        ResponseFunctionCallArgumentsDeltaEvent(
                            item_id=current_item_id,
                            delta=ctx.parser.last_content_delta,
                            output_index=current_output_index,
                            sequence_number=-1,
                            type="response.function_call_arguments.delta",
                        )
                    )
1922

1923
1924
1925
1926
    async def responses_stream_generator(
        self,
        request: ResponsesRequest,
        sampling_params: SamplingParams,
1927
        result_generator: AsyncIterator[ConversationContext | None],
1928
1929
1930
1931
        context: ConversationContext,
        model_name: str,
        tokenizer: AnyTokenizer,
        request_metadata: RequestResponseMetadata,
1932
        created_time: int | None = None,
1933
    ) -> AsyncGenerator[StreamingResponsesResponse, None]:
1934
1935
1936
1937
1938
        # TODO:
        # 1. Handle disconnect

        created_time = created_time or int(time.time())

1939
1940
        sequence_number = 0

1941
        def _increment_sequence_number_and_return(
1942
            event: StreamingResponsesResponse,
1943
        ) -> StreamingResponsesResponse:
1944
1945
            nonlocal sequence_number
            # Set sequence_number if the event has this attribute
1946
            if hasattr(event, "sequence_number"):
1947
1948
                event.sequence_number = sequence_number
            sequence_number += 1
1949
            return event
1950

1951
        async with AsyncExitStack() as exit_stack:
1952
1953
            processer = None
            if self.use_harmony:
1954
1955
                # TODO: in streaming, we noticed this bug:
                # https://github.com/vllm-project/vllm/issues/25697
1956
                await self._initialize_tool_sessions(request, context, exit_stack)
1957
1958
1959
                processer = self._process_harmony_streaming_events
            else:
                processer = self._process_simple_streaming_events
1960
            # TODO Hanchen make sampling params to include the structural tag
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970

            initial_response = ResponsesResponse.from_request(
                request,
                sampling_params,
                model_name=model_name,
                created_time=created_time,
                output=[],
                status="in_progress",
                usage=None,
            ).model_dump()
1971
            yield _increment_sequence_number_and_return(
1972
1973
1974
1975
                ResponseCreatedEvent(
                    type="response.created",
                    sequence_number=-1,
                    response=initial_response,
1976
1977
                )
            )
1978
            yield _increment_sequence_number_and_return(
1979
1980
1981
1982
                ResponseInProgressEvent(
                    type="response.in_progress",
                    sequence_number=-1,
                    response=initial_response,
1983
1984
                )
            )
1985

1986
            async for event_data in processer(
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
                request,
                sampling_params,
                result_generator,
                context,
                model_name,
                tokenizer,
                request_metadata,
                created_time,
                _increment_sequence_number_and_return,
            ):
1997
                yield event_data
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014

            async def empty_async_generator():
                # A hack to trick Python to think this is a generator but
                # in fact it immediately returns.
                if False:
                    yield

            final_response = await self.responses_full_generator(
                request,
                sampling_params,
                empty_async_generator(),
                context,
                model_name,
                tokenizer,
                request_metadata,
                created_time=created_time,
            )
2015
            yield _increment_sequence_number_and_return(
2016
                ResponseCompletedEvent(
2017
2018
                    type="response.completed",
                    sequence_number=-1,
2019
                    response=final_response,
2020
2021
                )
            )