mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* feat: better highlight * feat(search): add long_summary to search vector for improved search results - Update search vector to include long_summary with weight B (between title A and webvtt C) - Modify SearchController to fetch long_summary and prioritize its snippets - Generate snippets from long_summary first (max 2), then from webvtt for remaining slots - Add comprehensive tests for long_summary search functionality - Create migration to update search_vector_en column in PostgreSQL This improves search quality by including summarized content which often contains key topics and themes that may not be explicitly mentioned in the transcript. * fix: address code review feedback for search enhancements - Fix test file inconsistencies by removing references to non-existent model fields - Comment out tests for unimplemented features (room_ids, status filters, date ranges) - Update tests to only use currently available fields (room_id singular, no room_name/processing_status) - Mark future functionality tests with @pytest.mark.skip - Make snippet counts configurable - Add LONG_SUMMARY_MAX_SNIPPETS constant (default: 2) - Replace hardcoded value with configurable constant - Improve error handling consistency in WebVTT parsing - Use different log levels for different error types (debug for malformed, warning for decode, error for unexpected) - Add catch-all exception handler for unexpected errors - Include stack trace for critical errors All existing tests pass with these changes. * fix: correct datetime test to include required duration field * feat: better highlight * feat: search room names * feat: acknowledge deleted room * feat: search filters fix and rank removal * chore: minor refactoring * feat: better matches frontend * chore: self-review (vibe) * chore: self-review WIP * chore: self-review WIP * chore: self-review WIP * chore: self-review WIP * chore: self-review WIP * chore: self-review WIP * chore: self-review WIP * remove swc (vibe) * search url query sync (vibe) * search url query sync (vibe) * better casts and cap while * PR review + simplify frontend hook * pr: remove search db timeouts * cleanup tests * tests cleanup * frontend cleanup * index declarations * refactor frontend (self-review) * fix search pagination * clear "x" for search input * pagination max pages fix * chore: cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * cleanup * lockfile * pr review
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "reflector-ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"format": "prettier --write .",
|
|
"openapi": "openapi-ts"
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/react": "^3.24.2",
|
|
"@emotion/react": "^11.14.0",
|
|
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
|
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
"@sentry/nextjs": "^7.77.0",
|
|
"@vercel/edge-config": "^0.4.1",
|
|
"@vercel/kv": "^2.0.0",
|
|
"@whereby.com/browser-sdk": "^3.3.4",
|
|
"autoprefixer": "10.4.20",
|
|
"axios": "^1.8.2",
|
|
"eslint": "^9.33.0",
|
|
"eslint-config-next": "^14.2.31",
|
|
"fontawesome": "^5.6.3",
|
|
"ioredis": "^5.4.1",
|
|
"jest-worker": "^29.6.2",
|
|
"lucide-react": "^0.525.0",
|
|
"next": "^14.2.30",
|
|
"next-auth": "^4.24.7",
|
|
"next-themes": "^0.4.6",
|
|
"nuqs": "^2.4.3",
|
|
"postcss": "8.4.31",
|
|
"prop-types": "^15.8.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-dropdown": "^1.11.0",
|
|
"react-icons": "^5.0.1",
|
|
"react-markdown": "^9.0.0",
|
|
"react-qr-code": "^2.0.12",
|
|
"react-select-search": "^4.1.7",
|
|
"redlock": "^5.0.0-beta.2",
|
|
"sass": "^1.63.6",
|
|
"simple-peer": "^9.11.1",
|
|
"tailwindcss": "^3.3.2",
|
|
"typescript": "^5.1.6",
|
|
"wavesurfer.js": "^7.4.2"
|
|
},
|
|
"main": "index.js",
|
|
"repository": "https://github.com/Monadical-SAS/reflector-ui.git",
|
|
"author": "Andreas <andreas@monadical.com>",
|
|
"license": "All Rights Reserved",
|
|
"devDependencies": {
|
|
"@hey-api/openapi-ts": "^0.48.0",
|
|
"@types/react": "18.2.20",
|
|
"prettier": "^3.0.0",
|
|
"vercel": "^37.3.0"
|
|
},
|
|
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
|
}
|