blob: 9197b3983cc408b852f3bac2e10ef9e26ff0cd56 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
"""
Translate from OpenAI's `/v1/chat/completions` to Github's `/v1/chat/completions`
"""
from ...openai_like.chat.handler import OpenAILikeChatConfig
class GithubChatConfig(OpenAILikeChatConfig):
pass
|