First commit

This is base for automatization translating
This commit is contained in:
anker-na-20
2026-05-21 10:45:27 +03:00
commit b6dd80e749
18 changed files with 222507 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS translations (
id SERIAL PRIMARY KEY,
source_text TEXT NOT NULL,
translated_text TEXT NOT NULL,
raw_output TEXT,
model_name VARCHAR(100) NOT NULL,
prompt TEXT NOT NULL,
prompt_id INT,
created_at TIMESTAMP NOT NULL DEFAULT NOW()
);