mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
* remove unused imports * fix AmazonConverseConfig * fix test * fix import * ruff check fixes * test fixes * fix testing * fix imports
9 lines
209 B
Python
9 lines
209 B
Python
"""
|
|
Translate from OpenAI's `/v1/chat/completions` to Github's `/v1/chat/completions`
|
|
"""
|
|
|
|
from ...openai_like.chat.handler import OpenAILikeChatConfig
|
|
|
|
|
|
class GithubChatConfig(OpenAILikeChatConfig):
|
|
pass
|