financial-rag-bot / scripts /db_connector.py
Saadiktk's picture
Initial Hugging Face Space deployment
1ae6115
Raw
History Blame Contribute Delete
223 Bytes
import psycopg2
DB_CONFIG = {
"host": "localhost",
"port": 5432,
"dbname": "sec_rag_db",
"user": "raguser",
"password": "ragpassword",
}
def get_connection():
return psycopg2.connect(**DB_CONFIG)