Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gauravprasadgp
/
genai
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d132e19
genai
/
pgvector
/
init.sql
gauravprasadgp
initial commit
d132e19
10 months ago
raw
Copy download link
history
blame
Safe
200 Bytes
CREATE
EXTENSION IF
NOT
EXISTS
vector;
CREATE
TABLE
IF
NOT
EXISTS
embeddings (
id SERIAL
PRIMARY
KEY,
embedding vector,
document text,
metadata jsonb
created_at timestamptz
DEFAULT
now()
);