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