Skip to main content

Kion Consulting: Postgres (pgvector) vector database file management library and web GUI for LangChain.

Project description

kion_vectorstore

License: MIT

Overview kion_vectorstore is a Python library and GUI application for managing vector stores in PostgreSQL (with pgvector) using LangChain. It lets you upload PDFs or .txt files, organize them into collections, perform semantic search, and query them via an OpenAI-powered chat UI. You can also delete files or whole collections from a simple web interface.

Features

  • Upload PDFs and text files
  • Organize documents into named collections
  • OpenAI-powered semantic search across selected collections
  • Delete individual files or entire empty collections
  • Use functions programmatically in Python
  • Simple Flask-based web UI

Prerequisites

Quick Start

  1. Install the package pip install kion-vectorstore

  2. Create a .env file (once per project) using the CLI env-init --path "<-your folder name->" - Enter ONLY the name of your folder (DO NOT ENTER A PATH)

    Add --force to overwrite an existing .env:

    env-init --path "C:\Path\To\Your\Project" --force

  3. Fill in your .env OPENAI_API_KEY=sk-... OPENAI_MODEL=gpt-4o-mini OPENAI_EMBEDDING_MODEL=text-embedding-3-small PGHOST=localhost PGUSER=postgres PGPASSWORD=yourpassword PGDATABASE=yourdb PGPORT=5432

  4. Launch the web app Option A: Use the CLI kion-vectorstore-web

    Option B: From Python python -m kion_vectorstore.app

    The app will open http://127.0.0.1:5000/ in your browser.

Using the Web UI

  • File Loader tab: upload .txt or .pdf files to a collection (set chunk size/overlap)
  • Remove Files tab: select a collection, list files, and delete
  • Chat tab: pick collections and ask questions; the assistant answers using only your documents

Programmatic Use Initialize config once in your Python script, then use the plugin: from kion_vectorstore import initialize_config, PGVectorPlugin from langchain_openai import OpenAIEmbeddings

initialize_config(".env") embeddings = OpenAIEmbeddings() # uses OPENAI_API_KEY from env db = PGVectorPlugin(embedding_model=embeddings) print(db.list_collections())

Notes

  • This package ships a .env template inside the package. The env-init CLI copies it to your project.
  • Static HTML files are served from within the installed package; you do not need to copy them.

Troubleshooting

  • If you see "Configuration has not been initialized", ensure your .env exists and initialize_config has been called (the web app does this automatically).
  • Ensure the pgvector extension is installed in your database, and the required LangChain tables exist (they are created on first insert by langchain_community.vectorstores.PGVector).

License MIT © 2025 Kion Consulting

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kion_vectorstore-0.1.4.tar.gz (27.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kion_vectorstore-0.1.4-py3-none-any.whl (35.9 kB view details)

Uploaded Python 3

File details

Details for the file kion_vectorstore-0.1.4.tar.gz.

File metadata

  • Download URL: kion_vectorstore-0.1.4.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kion_vectorstore-0.1.4.tar.gz
Algorithm Hash digest
SHA256 506fe78938c3d628ab12df86f9d986225db36c4815862090a2c21a6c18cd17a0
MD5 d990044a04edc05f8139c5d420174b36
BLAKE2b-256 7613a28e8d52cf21fcbc0b5b426815eb02d4ae2686e8c9ee43db8f2e22a41e8d

See more details on using hashes here.

File details

Details for the file kion_vectorstore-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for kion_vectorstore-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0b589d3de60a77a6f9f932614e7f24c8b58ea22f9960d514edf6c1d939ce3a07
MD5 95e16cf725d505bdb27a855b1fc2e413
BLAKE2b-256 fd5863e94b60e715e5d19b3a4639085537bd96b4b6a5521e80fdbcb963c85632

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page