Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pgvector/pgvector-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mentora-ai/pgvector-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 4 commits
  • 91 files changed
  • 3 contributors

Commits on Jun 18, 2025

  1. Configuration menu
    Copy the full SHA
    7bc39b7 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2025

  1. feat: implement VectorField without numpy dependency

    Implements functional VectorField that works with list[float] instead of np.ndarray.
    
    Changes:
    - from_db_value: parses "[0.1,0.2]" string to list[float]
    - to_python: accepts list[float] and string formats
    - get_prep_value: converts list[float] to "[0.1,0.2]" for Postgres
    - VectorWidget/VectorFormField: handle list[float] display
    
    Original code commented for reference.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Opus 4.5 <[email protected]>
    brunokloss and claude committed Dec 12, 2025
    Configuration menu
    Copy the full SHA
    0cfba50 View commit details
    Browse the repository at this point in the history
  2. docs: add Original/New comments for clarity

    Each modified method now shows:
    - Original: the pgvector code with numpy
    - New: the replacement without numpy
    brunokloss committed Dec 12, 2025
    Configuration menu
    Copy the full SHA
    07026af View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1 from mentora-ai/feat/implement-vectorfield-with…

    …out-numpy
    
    feat: implement VectorField without numpy dependency
    vmesel authored Dec 12, 2025
    Configuration menu
    Copy the full SHA
    6986eeb View commit details
    Browse the repository at this point in the history
Loading