sach91 bootcamp week8 exercise

This commit is contained in:
sach91
2025-10-30 15:42:04 +05:30
parent 3fa7a3dad5
commit ef48ed539d
20 changed files with 3124 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
"""
models
"""
from .document_parser import DocumentParser
from .embeddings import EmbeddingModel
from .ollama_client import OllamaClient
__all__ = [
'DocumentParser',
'EmbeddingModel',
'OllamaClient'
]