File size: 12,299 Bytes
dbb6988 5e12730 ef2ce34 dbb6988 611d0f5 dbb6988 3c6d6b3 611d0f5 c025e27 611d0f5 273eb0a 611d0f5 273eb0a 611d0f5 dbb6988 c025e27 dbb6988 3c6d6b3 dbb6988 afe3c4d dbb6988 64022de dbb6988 3c6d6b3 c025e27 dbb6988 6150118 dbb6988 c025e27 536792d 3ea9a9c c025e27 3ea9a9c 611d0f5 37b5e25 611d0f5 3ea9a9c 69a3b08 536792d dbb6988 109082c cfd259a 109082c 536792d 109082c 6150118 dbb6988 109082c dbb6988 3c6d6b3 dbb6988 c3199eb 880062b 3670aeb 1b3b0fc 3670aeb 1b3b0fc 880062b c3199eb 880062b c3199eb 880062b c3199eb 880062b c3199eb 55d95bd 3ffd1e7 5e12730 3ffd1e7 4902f82 0f13c77 3f6c63c 55d95bd 4902f82 3f6c63c 0f13c77 4902f82 3f6c63c 0f13c77 4902f82 0f13c77 4902f82 0f13c77 3f6c63c 4902f82 0f13c77 3f6c63c 4902f82 55d95bd |
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
from typing import Any, Dict, List, Optional
from postgrest.types import CountMethod
from supabase.client import create_client, Client
from loguru import logger
import re
from .utils import timing_decorator_sync
from .constants import VEHICLE_KEYWORD_TO_COLUMN, VIETNAMESE_STOP_WORDS, VIETNAMESE_STOP_PHRASES
from .config import get_settings
def remove_stop_phrases(text, stop_phrases):
for phrase in stop_phrases:
# Sửa: Không escape dấu cách trong phrase, chỉ escape các ký tự đặc biệt khác
# Loại bỏ cụm từ, chỉ xóa khi là từ nguyên vẹn
pattern = rf"\b{phrase}\b"
text = re.sub(pattern, " ", text)
return text
class SupabaseClient:
def __init__(self, url: str, key: str):
"""
Khởi tạo SupabaseClient với url và key.
Input: url (str), key (str)
Output: SupabaseClient instance.
"""
self.client: Client = create_client(url, key)
settings = get_settings()
self.default_match_count = settings.match_count
@timing_decorator_sync
def get_page_token(self, page_id: str):
"""
Lấy access token của Facebook page từ Supabase.
Input: page_id (str)
Output: access_token (str) hoặc None nếu không có.
"""
try:
response = self.client.table('PageToken').select('token').eq('id', page_id).execute()
if response.data and len(response.data) > 0:
return response.data[0]['token']
return None
except Exception as e:
logger.error(f"Error getting page token: {e}")
return None
@timing_decorator_sync
def match_documents(self, embedding: List[float], match_count: Optional[int] = None, vehicle_keywords: Optional[List[str]] = None, user_question: str = '', min_rank_threshold: float = 0.001, rrf_k: int = 60):
"""
Truy vấn vector similarity search qua RPC match_documents.
Input: embedding (list[float]), match_count (int), vehicle_keywords (list[str] hoặc None)
Output: list[dict] kết quả truy vấn.
"""
# Sử dụng match_count từ config nếu không được truyền vào
if match_count is None:
match_count = self.default_match_count
# Chuẩn bị chuỗi truy vấn trong Python
# Tách từ và nối bằng '|'
"""
Xử lý câu hỏi thô: tách từ, loại bỏ stop words,
và trả về chuỗi text sạch để truyền vào RPC.
"""
# Lọc bỏ các từ có trong danh sách stop words và nối thành chuỗi với dấu cách
# 1. Loại bỏ stop phrase (từ ghép)
cleaned_text = remove_stop_phrases(user_question.lower(), VIETNAMESE_STOP_PHRASES)
# 2. Loại bỏ ký tự đặc biệt (chỉ giữ lại chữ cái, số, dấu cách)
cleaned_text = re.sub(r"[^\w\s]", " ", cleaned_text)
# 3. Tách từ và loại bỏ stop word đơn lẻ
words = cleaned_text.split()
or_query_tsquery = " ".join([word for word in words if word not in VIETNAMESE_STOP_WORDS])
logger.info(f"[DEBUG][RPC]: or_query_tsquery: {or_query_tsquery}")
logger.info(f"[DEBUG][RPC]: embedding: {embedding}")
try:
payload = {
'query_text': or_query_tsquery,
'query_embedding': embedding,
'match_count': match_count,
'min_rank_threshold': min_rank_threshold,
'vehicle_filters': None,
'rrf_k': rrf_k
}
if vehicle_keywords:
vehicle_columns = [VEHICLE_KEYWORD_TO_COLUMN[k] for k in vehicle_keywords if k in VEHICLE_KEYWORD_TO_COLUMN]
if vehicle_columns:
payload['vehicle_filters'] = vehicle_columns
response = self.client.rpc(
'match_documents',
payload
).execute()
if response.data:
return response.data
return []
except Exception as e:
logger.error(f"Error matching documents: {e}")
return []
@timing_decorator_sync
def store_embedding(self, text: str, embedding: List[float], metadata: Dict[str, Any]):
"""
Lưu embedding vào Supabase.
Input: text (str), embedding (list[float]), metadata (dict)
Output: bool (True nếu thành công, False nếu lỗi)
"""
try:
response = self.client.table('embeddings').insert({
'content': text,
'embedding': embedding,
'metadata': metadata
}).execute()
return bool(response.data)
except Exception as e:
logger.error(f"Error storing embedding: {e}")
return False
@timing_decorator_sync
def store_document_chunk(self, chunk_data: Dict[str, Any]) -> bool:
"""
Lưu document chunk vào Supabase.
Input: chunk_data (dict) - chứa tất cả thông tin chunk
Output: bool (True nếu thành công, False nếu lỗi)
"""
try:
# Xử lý các giá trị null/empty cho integer fields
processed_data = chunk_data.copy()
# Giữ lại embedding để lưu vào database
if 'embedding' in processed_data:
processed_data['embedding'] = processed_data['embedding']
# Xử lý article_number - chỉ gửi nếu có giá trị hợp lệ
if 'article_number' in processed_data:
if processed_data['article_number'] is None or processed_data['article_number'] == "":
processed_data['article_number'] = None
elif isinstance(processed_data['article_number'], str):
try:
processed_data['article_number'] = int(processed_data['article_number'])
except (ValueError, TypeError):
processed_data['article_number'] = None
# Xử lý vanbanid - đảm bảo là integer
if 'vanbanid' in processed_data:
if isinstance(processed_data['vanbanid'], str):
try:
processed_data['vanbanid'] = int(processed_data['vanbanid'])
except (ValueError, TypeError):
logger.error(f"Invalid vanbanid: {processed_data['vanbanid']}")
return False
# Xử lý các trường text - chuyển empty string thành None
text_fields = ['document_title', 'article_title', 'clause_number', 'sub_clause_letter', 'context_summary']
for field in text_fields:
if field in processed_data and processed_data[field] == "":
processed_data[field] = None
# Xử lý cha field - chuyển empty string thành None
if 'cha' in processed_data and processed_data['cha'] == "":
processed_data['cha'] = None
response = self.client.table('document_chunks').insert(processed_data).execute()
if response.data:
logger.info(f"Successfully stored chunk {processed_data.get('id', 'unknown')}")
return True
else:
logger.error(f"Failed to store chunk {processed_data.get('id', 'unknown')}")
return False
except Exception as e:
logger.error(f"Error storing document chunk: {e}")
return False
@timing_decorator_sync
def delete_all_document_chunks(self) -> bool:
"""
Xóa toàn bộ bảng document_chunks.
Output: bool (True nếu thành công, False nếu lỗi)
"""
try:
# Xóa tất cả records trong bảng
response = self.client.table('document_chunks').delete().execute()
logger.info(f"Successfully deleted all document chunks")
return True
except Exception as e:
logger.error(f"Error deleting all document chunks: {e}")
return False
@timing_decorator_sync
def get_document_chunks_by_vanbanid(self, vanbanid: int) -> List[Dict[str, Any]]:
"""
Lấy tất cả chunks của một văn bản theo vanbanid.
Input: vanbanid (int)
Output: List[Dict] - danh sách chunks
"""
try:
response = self.client.table('document_chunks').select('*').eq('vanbanid', vanbanid).execute()
if response.data:
logger.info(f"Found {len(response.data)} chunks for vanbanid {vanbanid}")
return response.data
return []
except Exception as e:
logger.error(f"Error getting document chunks for vanbanid {vanbanid}: {e}")
return []
@timing_decorator_sync
def delete_document_chunks_by_vanbanid(self, vanbanid: int) -> bool:
"""
Xóa tất cả chunks của một văn bản theo vanbanid.
Input: vanbanid (int)
Output: bool (True nếu thành công, False nếu lỗi)
"""
try:
response = self.client.table('document_chunks').delete().eq('vanbanid', vanbanid).execute()
logger.info(f"Successfully deleted all chunks for vanbanid {vanbanid}")
return True
except Exception as e:
logger.error(f"Error deleting chunks for vanbanid {vanbanid}: {e}")
return False
@timing_decorator_sync
def get_all_document_chunks(self) -> List[Dict[str, Any]]:
"""
Lấy toàn bộ dữ liệu từ bảng document_chunks.
Output: List[Dict] - danh sách tất cả chunks
"""
try:
logger.info("[SUPABASE] Fetching all document chunks")
# Đếm tổng số records trước
count_response = self.client.table('document_chunks').select('*', count=CountMethod.exact).execute()
total_count = count_response.count if hasattr(count_response, 'count') else 'unknown'
logger.info(f"[SUPABASE] Total records in table: {total_count}")
all_chunks = []
page_size = 1000
last_id = 0
page_count = 0
while True:
page_count += 1
# Sử dụng cursor-based pagination với id
if last_id == 0:
# Lần đầu: lấy từ đầu
response = self.client.table('document_chunks').select('*').order('id').limit(page_size).execute()
else:
# Các lần sau: lấy từ id > last_id
response = self.client.table('document_chunks').select('*').order('id').gt('id', last_id).limit(page_size).execute()
actual_count = len(response.data) if response.data else 0
logger.info(f"[SUPABASE] Page {page_count}: last_id={last_id}, requested={page_size}, actual={actual_count}")
if not response.data:
logger.info(f"[SUPABASE] No more data after id {last_id}")
break
all_chunks.extend(response.data)
# Cập nhật last_id cho page tiếp theo
if response.data:
last_id = max(chunk.get('id', 0) for chunk in response.data)
if actual_count < page_size:
logger.info(f"[SUPABASE] Last page with {actual_count} records")
break
logger.info(f"[SUPABASE] Cursor-based pagination fetched {len(all_chunks)} document chunks (expected: {total_count})")
logger.info(f"[SUPABASE] Fetched {page_count} pages with page_size={page_size}")
return all_chunks
except Exception as e:
logger.error(f"[SUPABASE] Error fetching document chunks: {e}")
return [] |