Files
lijiaoqiao/llm-gateway-competitors/litellm-wheel-src/litellm/llms/empower/chat/transformation.py

10 lines
218 B
Python
Raw Normal View History

"""
Translate from OpenAI's `/v1/chat/completions` to Empower's `/v1/chat/completions`
"""
from ...openai_like.chat.transformation import OpenAILikeChatConfig
class EmpowerChatConfig(OpenAILikeChatConfig):
pass