Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9db3174
temporary bare auth
rx6ru Dec 9, 2025
d62a12e
Implement graceful shutdown for the server and worker, and add a star…
rx6ru Dec 9, 2025
5b9afaf
Implement meeting completion logic - removing the race condition - wi…
rx6ru Dec 11, 2025
b070599
ignore dev-scripts
rx6ru Dec 11, 2025
c2e3170
**Update 2.2**
QuiteArpit Dec 11, 2025
eb97103
Externalize queue and MongoDB collection names to config, supporting …
rx6ru Dec 11, 2025
bdb5d24
Updated embedding model from embedding-001 to gemini-embedding-001 wi…
rx6ru Dec 11, 2025
e51336e
**Update 2.3**
QuiteArpit Dec 11, 2025
efd12f5
Fix TypeScript Errors :)
QuiteArpit Dec 11, 2025
186925b
llm updated: 2.5-pro to 3-pro-preview
rx6ru Dec 11, 2025
fe1cfe3
fix: increase LLM retry attempts to 3 and add a 31-second delay befor…
rx6ru Dec 11, 2025
3a06903
Gemini 3 model issue - Dropping to gemini-2.5-flash-lite
rx6ru Dec 11, 2025
f2cfdc2
refactor: Migrate to the new Google GenAI SDK, update streaming logic…
rx6ru Dec 12, 2025
ff2d919
fix: Correct Gemini API system instruction handling to resolve 400 er…
rx6ru Dec 12, 2025
81eeaef
Minor Changes to Extension Popup UI and Chat Interface Design
QuiteArpit Dec 12, 2025
b90006d
feat: Add Gemini API key rotation to support multiple keys and enhanc…
rx6ru Dec 12, 2025
190e505
Chat Interface Changes
QuiteArpit Dec 12, 2025
8626077
Qdrant Query issue fix- timeout - 10s->60s
rx6ru Dec 12, 2025
6f8e1b1
feat: Improve LLM stream error handling by categorizing pre-stream fa…
rx6ru Dec 12, 2025
ce3f417
refactor: Implement API key rotation for Groq and Gemini services, up…
rx6ru Dec 12, 2025
cf0d18c
Error Handling at Frontend
QuiteArpit Dec 13, 2025
820dc83
feat: externalize LLM prompts to dedicated files and update related c…
rx6ru Dec 14, 2025
c3a5d17
feat: Harden LLM prompts against injection, improve LLM client error …
rx6ru Dec 14, 2025
1d406e4
Few JS code issues fixed with an audioContext leak issue being addres…
QuiteArpit Jan 13, 2026
71ed04e
Some visual changes for accessibility of screen readers
QuiteArpit Jan 13, 2026
1de79e3
Optimized Redundancy of two chunks being sent marked as last, causing…
QuiteArpit Jan 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ node_modules/
dist/
uploads/
transcriptions/
cred/
cred/

.agent/
.vscode/

25 changes: 25 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
node_modules/

.env
.env.local
.env.*.local

dist/
uploads/
transcriptions/
cred/

coverage/

*.log
npm-debug.log*

.DS_Store
Thumbs.db

.idea/
.vscode/
*.swp

# Developer scripts
dev-scripts/
Loading