Files
lijiaoqiao/llm-gateway-competitors/litellm-wheel-src/litellm/llms/galadriel/chat/transformation.py
2026-03-26 20:06:14 +08:00

10 lines
215 B
Python

"""
Translate from OpenAI's `/v1/chat/completions` to Galadriel's `/v1/chat/completions`
"""
from ...openai_like.chat.handler import OpenAILikeChatConfig
class GaladrielChatConfig(OpenAILikeChatConfig):
pass