-
Notifications
You must be signed in to change notification settings - Fork 138
/
models.py
43 lines (30 loc) · 807 Bytes
/
models.py
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
import hashlib
from enum import Enum
from pydantic import BaseModel
from typing import Optional, List
class DocumentResponse(BaseModel):
page_content: str
metadata: dict
class DocumentModel(BaseModel):
page_content: str
metadata: Optional[dict] = {}
def generate_digest(self):
hash_obj = hashlib.md5(self.page_content.encode())
return hash_obj.hexdigest()
class StoreDocument(BaseModel):
filepath: str
filename: str
file_content_type: str
file_id: str
class QueryRequestBody(BaseModel):
query: str
file_id: str
k: int = 4
entity_id: Optional[str] = None
class CleanupMethod(str, Enum):
incremental = "incremental"
full = "full"
class QueryMultipleBody(BaseModel):
query: str
file_ids: List[str]
k: int = 4