mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
* remove unused imports * fix AmazonConverseConfig * fix test * fix import * ruff check fixes * test fixes * fix testing * fix imports
9 lines
215 B
Python
9 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
|