enhance article processing by adding language support and adjusting embedding parameters

This commit is contained in:
ImBenji
2026-04-20 03:41:10 +01:00
parent 37d9dfb083
commit 8805d3a3fc
7 changed files with 129 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
# Database Policy
When making any changes to the database schema or data, a strictly no data loss policy must be followed. This means:
- Never DROP columns, tables, or indexes that contain data without first migrating that data elsewhere
- All schema changes must be additive or safe migrations (e.g. ADD COLUMN, rename via copy+verify+drop)
- Always backup or verify row counts before and after any bulk UPDATE or DELETE
- Destructive operations require explicit user confirmation before executing