Skip to content

Commit

Permalink
rebase leftovers
Browse files Browse the repository at this point in the history
Signed-off-by: NickLucche <[email protected]>
  • Loading branch information
NickLucche committed Feb 7, 2025
1 parent 100c362 commit 222c094
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions vllm/entrypoints/openai/api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@
ScoreRequest, ScoreResponse,
TokenizeRequest,
TokenizeResponse,
TranscriptionRequest,
TranscriptionResponse,
UnloadLoraAdapterRequest)
from vllm.entrypoints.openai.reasoning_parsers import ReasoningParserManager
# yapf: enable
Expand Down
5 changes: 3 additions & 2 deletions vllm/entrypoints/openai/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
import re
import time
from argparse import Namespace
from typing import Any, Dict, List, Literal, Optional, TypeAlias, Union
from typing import (Any, ClassVar, Dict, List, Literal, Optional, Set,
TypeAlias, Union)

import torch
from fastapi import UploadFile
from pydantic import (BaseModel, ConfigDict, Field, TypeAdapter,
ValidationInfo, field_validator, model_validator)
from fastapi import UploadFile
from typing_extensions import Annotated

from vllm.entrypoints.chat_utils import ChatCompletionMessageParam
Expand Down
1 change: 1 addition & 0 deletions vllm/entrypoints/openai/serving_transcription.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0
import asyncio
import io
from typing import Any, AsyncGenerator, Dict, Optional, Union
Expand Down

0 comments on commit 222c094

Please sign in to comment.