This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE EXTENSION IF NOT EXISTS vector; | |
DROP TABLE IF EXISTS public.YOU_BASE CASCADE; | |
CREATE TABLE IF NOT EXISTS public.YOU_BASE ( | |
id SERIAL PRIMARY KEY, | |
content TEXT NOT NULL, | |
metadata JSONB DEFAULT '{}', | |
embedding VECTOR(768), -- Измените на 1536 если нужно | |
created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP, |