ai-ShopMind

(★ 29)

It works by converting product descriptions into vector embeddings stored in Endee, a high-performance vector database. When a customer asks a question, the system finds the most semantically similar products using vector search, then generates a helpful answer grounded in the actual product catalog.

File Explorer

  • .dockerignore
  • .env.example
  • .gitignore
  • .pre-commit-config.yaml
  • alembic.ini
  • ALEMBIC_QUICK_REFERENCE.sh
  • ALEMBIC_SETUP_COMPLETE.md
  • API.md
  • check_db_schema.py
  • CI_CD_CHECKLIST.md
  • CI_CD_SETUP.md
  • CI_CD_TROUBLESHOOTING.md
  • CODE_ANALYSIS_COMPREHENSIVE.md
  • CONTRIBUTING.md
  • DEPLOYMENT.md
  • docker-compose.yml
  • Dockerfile
  • GCP_LLM_QUICK_START.md
  • GCP_LLM_SETUP.md
  • GCP_LLM_SETUP_COMPLETE.md
  • IMPLEMENTATION_STATUS.md
  • PHASE3_METRICS_COMPLETE.md
  • PHASE_5_CI_CD_COMPLETE.md
  • PRODUCTION_READINESS.md
  • pyproject.toml
  • pytest.ini
  • README.md
  • requirements.txt
  • setup_gcp_llm.py
  • setup_gcp_llm.sh
  • SQL_INJECTION_FIX_COMPLETE.md
  • TORCH_QUICK_REFERENCE.md
  • TRAINING_PIPELINE_IMPLEMENTATION_SUMMARY.md
  • TRAINING_PIPELINE_QUICK_REFERENCE.md
  • TRAINING_PIPELINE_VALIDATION.md
  • V2_TORCH_IMPLEMENTATION.md
  • validate_week1.py
  • verify_alembic.py
  • verify_embedding_consolidation.py
  • verify_endpoints.py
  • verify_integration.py
  • verify_metrics.py
  • WEEK2_IMPLEMENTATION_COMPLETE.md
  • WEEK2_TORCH_INTEGRATION.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

uvicorn

View Details ▼

Python ASGI HTTP Server, for asynchronous projects.

uvicorn {{import.path:app_object}}

Run Python web app:

uvicorn --host {{localhost}} --port {{8080}} {{import.path:app_object}}

Listen on port 8080 on localhost:

uvicorn --reload {{import.path:app_object}}

Turn on live reload:

// repository documentation