Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hugging2021
/
ragtag4
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
49fbf9f
ragtag4
/
init-db.sql
hugging2021
Upload folder using huggingface_hub
79c7b05
verified
3 days ago
raw
Copy download link
history
blame
Safe
161 Bytes
CREATE
EXTENSION IF
NOT
EXISTS
vector;
CREATE
TABLE
IF
NOT
EXISTS
items (
id SERIAL
PRIMARY
KEY,
title TEXT,
doc TEXT,
embedding vector(
4096
)
);