File size: 222 Bytes
0a6cb95
c3aef13
 
 
 
 
 
1
2
3
4
5
6
7

# models/__init__.py
"""Models package for embedding API schemas and configurations"""

from .schemas import EmbeddingRequest, EmbeddingResponse, ModelInfo

__all__ = ['EmbeddingRequest', 'EmbeddingResponse', 'ModelInfo']