Spaces:
Build error
Build error
File size: 924 Bytes
d660b02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
from abc import ABC
from typing import Optional
from pydantic import UUID4
from .base import VectorBaseDocument
from .types import DataCategory
class CleanedDocument(VectorBaseDocument, ABC):
content: str
platform: str
author_id: UUID4
author_full_name: str
class CleanedPostDocument(CleanedDocument):
image: Optional[str] = None
class Config:
name = "cleaned_posts"
category = DataCategory.POSTS
use_vector_index = False
class CleanedArticleDocument(CleanedDocument):
link: str
class Config:
name = "cleaned_articles"
category = DataCategory.ARTICLES
use_vector_index = False
class CleanedRepositoryDocument(CleanedDocument):
name: str
link: str
class Config:
name = "cleaned_repositories"
category = DataCategory.REPOSITORIES
use_vector_index = False
|