Embedding Vector Search w/ Django & PostgreSQL, Part 1
Sigh. 🙄 Yes--yet another "AI" article in a blog. The pgvector extension allows PostgreSQL to support vector searches. This ability is useful for implementing RAG solutions. The link has all…
Sigh. 🙄 Yes--yet another "AI" article in a blog. The pgvector extension allows PostgreSQL to support vector searches. This ability is useful for implementing RAG solutions. The link has all…
This is a useful but difficult-to-remember command for PSQL: \pset pager off Or, if the invocation of psql is within control, add the -P pager=off argument: psql -P pager=off ...…
With the basics down, the next step in this little adventure w/ Javascript is to make it work in a React.js environment (Next.js to be more precise). There were some…
Part of a project I'm working on involves some animation of "cards" sliding in and out of existence. This trinity of HTML/CSS/JS serves as a basis for that functionality. The…