Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.52 KB

File metadata and controls

56 lines (37 loc) · 1.52 KB

Prerequisites

Install Latest Version

# Create a new environment
uv venv

# Activate new environment
source .venv/bin/activate

# Optional dependencues for Azure parser
uv pip install "pyllmsearch[azureparser]"

# Preferred method (much faster) - install packages using uv
uv pip install pyllmsearch

Install from source

# Clone the repository

git clone https://github.com/snexus/llm-search.git
cd llm-search
# Create a new environment
uv venv
# Activate new environment
source .venv/bin/activate
# Install packages using uv

uv sync

# Optional - install in the development mode
uv pip install -e . # or `pip install -e .` for development

# For Azure parser, install with optional dependencies
uv pip install ."[azureparser]"