-
Notifications
You must be signed in to change notification settings - Fork 0
Just a funny ChatBot idea
License
Skiftstar/Kaida
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Python 3.10+ doesn't work because of some bad version check in one of the dependencies Currently using 3.9.6 # Start PostGres ``` cd postgres docker-compose up -d ``` # Create Initial Table Connect to DB ``` docker exec -it pgvector_db psql -U myuser -d my_vectors ``` Add Initial Table ``` CREATE EXTENSION IF NOT EXISTS vector; CREATE TABLE embeddings ( id SERIAL PRIMARY KEY, text TEXT NOT NULL, embedding vector(384) -- Match this to your Sentence Transformer model output ); ``` exit with `\q` # Psycopg2 Setup on MacOS you need PostgreSQL from Brew to install psycopg2 ``` brew install postgresql ```
About
Just a funny ChatBot idea
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published