about summary refs log tree commit diff
path: root/.venv/lib/python3.12/site-packages/litellm/llms/vllm/completion/transformation.py
blob: ec4c07e95d8d03f4b215501d29ef5507aee158fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Translates from OpenAI's `/v1/chat/completions` to the VLLM sdk `llm.generate`. 

NOT RECOMMENDED FOR PRODUCTION USE. Use `hosted_vllm/` instead.
"""

from ...hosted_vllm.chat.transformation import HostedVLLMChatConfig


class VLLMConfig(HostedVLLMChatConfig):
    """
    VLLM SDK supports the same OpenAI params as hosted_vllm.
    """

    pass