scrimba
AI Embeddings
Store vector embeddings
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Store vector embeddings
Expand for more info
documents.sql
run
preview
console
-- Create a table to store your documents
create table documents (
id bigserial primary key,
content text, -- corresponds to the "text chunk"
embedding vector(1536) -- 1536 works for OpenAI embeddings
);
Console
"Embedding complete!"
,
/index.html
-5:47