mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-09 03:02:26 +08:00
12 lines
224 B
Python
12 lines
224 B
Python
|
|
"""
|
||
|
|
OpenAI Chat API 处理器
|
||
|
|
"""
|
||
|
|
|
||
|
|
from src.api.handlers.openai.adapter import OpenAIChatAdapter
|
||
|
|
from src.api.handlers.openai.handler import OpenAIChatHandler
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"OpenAIChatAdapter",
|
||
|
|
"OpenAIChatHandler",
|
||
|
|
]
|