Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
42c201b
feat: add message editing and individual deletion functionality
google-labs-jules[bot] Jan 31, 2026
7f5b466
feat: add message editing and individual deletion functionality
google-labs-jules[bot] Jan 31, 2026
ef516f3
fix: ensure createdAt is set for new messages and match UI screenshot
google-labs-jules[bot] Jan 31, 2026
a353c11
feat: Implement message editing, deletion, and copying with AI re-gen…
google-labs-jules[bot] Jan 31, 2026
c5c9b82
refactor: Improve AI workflow robustness and UserMessage UI
google-labs-jules[bot] Jan 31, 2026
589f315
feat: implement message editing, deletion, and re-generation
google-labs-jules[bot] Jan 31, 2026
e2f995f
feat: implement message editing, deletion, and re-generation
google-labs-jules[bot] Jan 31, 2026
9980074
feat: implement message management and fix build issues
google-labs-jules[bot] Jan 31, 2026
8ae549a
Update LICENSE
ngoiyaeric Feb 1, 2026
3495da1
Update LICENSE
ngoiyaeric Feb 1, 2026
ba36e58
Merge pull request #469 from QueueLab/ngoiyaeric-patch-4
ngoiyaeric Feb 1, 2026
1829ca2
feat: implement message management and fix build issues
google-labs-jules[bot] Feb 1, 2026
71fe886
feat: implement message management and ensure Next.js 15 compatibility
google-labs-jules[bot] Feb 1, 2026
25ca817
feat: implement message management and fix robustness/build issues
google-labs-jules[bot] Feb 1, 2026
8eba2ce
Merge branch 'main' into feature/message-edit-delete-1182960141874166…
ngoiyaeric Feb 1, 2026
2afea14
fix: resolve token output issue by fixing researcher return destructu…
ngoiyaeric Feb 6, 2026
a7703a2
fix: resolve merge conflicts and fix token output issue by ensuring p…
ngoiyaeric Feb 6, 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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DATABASE_URL="postgresql://user:password@host:port/db"
NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoiZHVtbXkiLCJhIjoiY2p6YTM0eHlyMDAwMDNia3BkY3R6ZzhpbyJ9.dummy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Do not commit real Mapbox access tokens.

Line 2 introduces a concrete token in .env. Even public tokens can be abused or leak account usage. Keep real values in .env.local/secret store and commit only a placeholder (or move to .env.example).

🔐 Suggested placeholder
-NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoiZHVtbXkiLCJhIjoiY2p6YTM0eHlyMDAwMDNia3BkY3R6ZzhpbyJ9.dummy
+NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=YOUR_MAPBOX_PUBLIC_TOKEN
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=pk.eyJ1IjoiZHVtbXkiLCJhIjoiY2p6YTM0eHlyMDAwMDNia3BkY3R6ZzhpbyJ9.dummy
NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=YOUR_MAPBOX_PUBLIC_TOKEN
🤖 Prompt for AI Agents
In @.env at line 2, Replace the real Mapbox token committed in
NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN with a non-sensitive placeholder and remove the
actual token from the repository; move the real value into a local/secret store
(.env.local or secrets manager) and update or add .env.example to include the
placeholder key so contributors know to provide their own token. Ensure
references to NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN in the code remain unchanged but
that no real credential is present in tracked files.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ APPENDIX: How to apply the Apache License to your work.
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2024 Yoshiki Miura
Copyright 2025 Eric Ngoiya

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading