soyailabs / app\models\__init__.py
wiizm's picture
Upload app\models\__init__.py with huggingface_hub
2ad1a35 verified
raw
history blame contribute delete
399 Bytes
"""
Pydantic ๋ชจ๋ธ ์ •์˜
๋ฐ์ดํ„ฐ ๊ฒ€์ฆ ๋ฐ ์ง๋ ฌํ™”๋ฅผ ์œ„ํ•œ ๋ชจ๋ธ๋“ค์„ ์ •์˜ํ•ฉ๋‹ˆ๋‹ค.
"""
from app.models.chunk import (
ChunkMetadata,
ChunkCreate,
ChunkResponse,
)
from app.models.file import (
FileUpload,
FileResponse,
)
__all__ = [
'ChunkMetadata',
'ChunkCreate',
'ChunkResponse',
'FileUpload',
'FileResponse',
]