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.

파일 탐색기

  • .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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

pip install

설명 보기 ▼

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

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

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

특정 Python 파일 실행:

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

특정 Python 파일 실행 후 REPL 시작:

🔍

uvicorn

설명 보기 ▼

비동기 프로젝트를 위한 Python ASGI HTTP 서버.
더 많은 정보: <https://www.uvicorn.org/settings/>.

uvicorn {{import.path:app_object}}

Python 웹 앱 실행:

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

localhost에서 포트 8080으로 수신 대기:

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

라이브 리로드 활성화:

// repository documentation