hn-search
Vector search over Hacker News comments and RAG pipeline with a simple web ui
파일 탐색기
- production_queries.jsonl
- favicon.svg
- Answer.tsx
- ProgressLog.tsx
- RecentQueries.tsx
- SearchBar.tsx
- Sources.tsx
- useRecentQueries.ts
- useSearch.ts
- useTheme.ts
- api.ts
- App.tsx
- main.tsx
- styles.css
- types.ts
- .gitignore
- eslint.config.js
- index.html
- package-lock.json
- package.json
- README.md
- tsconfig.app.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- __init__.py
- __main__.py
- app.py
- search.py
- __init__.py
- agent.py
- cli.py
- nodes.py
- pipeline.py
- state.py
- tools.py
- .DS_Store
- __init__.py
- cache_config.py
- common.py
- job_manager.py
- logging_config.py
- search_backend.py
- backfill_parent_ids_apply.py
- backfill_parent_ids_fetch.py
- build_search_artifacts.py
- cron_update.py
- eval_judge.py
- eval_rust_parity.py
- export_eval_log.py
- fetch_and_embed_new_comments.py
- fetch_historical.py
- generate_embeddings_gpu.py
- gpu_embed.sh
- sync_embeddings.sh
- verify_artifacts.py
- Caddyfile
- hnsearch.service
- rsync_artifacts.sh
- db.rs
- index.rs
- main.rs
- quantize.rs
- .gitignore
- Cargo.lock
- Cargo.toml
- README.md
- .dockerignore
- .DS_Store
- .env.example
- .gitignore
- .mise.toml
- .python-version
- CLAUDE.md
- docker-compose.yml
- Dockerfile
- example.png
- Makefile
- Procfile
- pyproject.toml
- README.md
- uv.lock
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
uv run
설명 보기 ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv sync
설명 보기 ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
