Commit graph

352 commits

Author SHA1 Message Date
Anish Sarkar
5ecf4e3e9d refactor: remove unused comment-related state and components; streamline comment panel styling for improved responsiveness 2026-03-10 14:00:29 +05:30
DESKTOP-RTLN3BA\$punk
7362da52d3 feat: Consolidate composer action buttons into a single configuration popover 2026-03-09 23:18:23 -07:00
DESKTOP-RTLN3BA\$punk
62c9880f11 feat: update connector dialog header to improve clarity and user engagement 2026-03-09 16:37:06 -07:00
DESKTOP-RTLN3BA\$punk
8f94350bc1 feat: update web crawler configuration and messaging for improved user guidance and clarity 2026-03-09 16:34:16 -07:00
DESKTOP-RTLN3BA\$punk
c6fc4edbc2 feat: add YouTube video and playlist support in document collection with enhanced URL handling 2026-03-09 16:07:54 -07:00
DESKTOP-RTLN3BA\$punk
d70e292fbe refactor: restructure instrumentation client initialization and enhance UI components for better performance and user experience 2026-03-08 17:48:09 -07:00
Anish Sarkar
863ba6865c fix: update routing in settings and onboarding components to use 'tab' query parameter instead of 'section' for improved navigation consistency 2026-03-08 20:26:48 +05:30
Anish Sarkar
c4d3322323 refactor: update icons in user message component and adjust dropdown menu alignment for improved UI consistency 2026-03-08 18:30:33 +05:30
Anish Sarkar
9945d16b17 chore: ran biome checks 2026-03-07 12:57:27 +05:30
Anish Sarkar
c02207e911 refactor: simplify DocumentUploadTab component by removing motion animations and enhancing file display logic for improved performance and readability 2026-03-07 12:31:55 +05:30
Anish Sarkar
f75b224c2c refactor: update dialog component styles for improved visual consistency and user interaction by adjusting background opacity and border styles 2026-03-07 05:00:07 +05:30
Anish Sarkar
f8b0e946ce chore: ran linting 2026-03-07 04:46:48 +05:30
Anish Sarkar
232618f995 refactor: update styling in ConnectorIndicator to enhance visual consistency by removing unnecessary ring classes and ensuring dark mode compatibility 2026-03-07 04:24:36 +05:30
Anish Sarkar
72337f326c refactor: update various components to enhance styling consistency and improve user interaction by removing unnecessary classes and adjusting dialog and dropdown styles 2026-03-07 04:15:40 +05:30
Anish Sarkar
c9949303ae feat: integrate document upload dialog in ComposerAction and update sidebar components for improved user interaction and styling consistency 2026-03-07 03:29:46 +05:30
Anish Sarkar
c9d92ee5a0 refactor: update styling in ConnectorIndicator and ChatShareButton components to prevent text selection, enhancing user interface consistency 2026-03-07 00:08:08 +05:30
Anish Sarkar
c1ba3a9b6d refactor: streamline document mention handling by consolidating atom logic and removing redundant state updates, enhancing code clarity and maintainability in chat components 2026-03-06 23:33:51 +05:30
Anish Sarkar
8d5d8e490c refactor: remove ChatHeader from Thread component and update related logic, improving code clarity and maintaining consistent header display in chat interface 2026-03-06 22:38:49 +05:30
Anish Sarkar
1a688c7161 feat: enhance notifications system by introducing category-based filtering for comments and status, improving user experience in the inbox and API interactions 2026-03-06 19:35:35 +05:30
Anish Sarkar
58f620482f refactor: improve inline mention editor by enhancing chip element interactions and responsiveness for mobile and desktop devices 2026-03-06 16:07:34 +05:30
Anish Sarkar
3be26429ca refactor: integrate sidebar document selections into chat functionality, enhancing document mention management and improving user experience in the Composer and DocumentsSidebar components 2026-03-06 15:59:45 +05:30
Anish Sarkar
f0e4aa6539 refactor: enhance document mention functionality in chat by introducing pending mentions and removals atoms, and updating DocumentsSidebar and Composer components for improved document management 2026-03-06 15:35:58 +05:30
Anish Sarkar
95a0e35393 feat: add documentsSidebarOpenAtom for managing sidebar state and integrate it into LayoutDataProvider and Composer components 2026-03-06 14:40:10 +05:30
Anish Sarkar
91463b3701 chore: ran linting 2026-03-06 12:17:57 +05:30
Anish Sarkar
4a5a38c25b refactor: remove ConnectorIndicator's hideTrigger prop and clean up dashboard layout by eliminating unused component references 2026-03-05 21:21:37 +05:30
Anish Sarkar
936bd70682 refactor: simplify dashboard layout by removing unused navigation props and implementing a new DocumentsSidebar for better document management 2026-03-05 20:34:02 +05:30
DESKTOP-RTLN3BA\$punk
1bb9f479e1 feat: refactor document fetching and improve comment batching
- Replaced the useDocuments hook with React Query for better caching and deduplication of document requests.
- Updated the ConnectorIndicator component to fetch document type counts using a new atom for real-time updates.
- Enhanced the useComments hook to manage batch requests more effectively, reducing race conditions and improving performance.
- Set default query options in the query client to optimize stale time and refetch behavior.
2026-02-28 01:54:54 -08:00
DESKTOP-RTLN3BA\$punk
0e723a5b8b feat: perf optimizations
- improved search_knowledgebase_tool
- Added new endpoint to batch-fetch comments for multiple messages, reducing the number of API calls.
- Introduced CommentBatchRequest and CommentBatchResponse schemas for handling batch requests and responses.
- Updated chat_comments_service to validate message existence and permissions before fetching comments.
- Enhanced frontend with useBatchCommentsPreload hook to optimize comment loading for assistant messages.
2026-02-27 17:19:25 -08:00
DESKTOP-RTLN3BA\$punk
664c43ca13 feat: add performance logging middleware and enhance performance tracking across services
- Introduced RequestPerfMiddleware to log request performance metrics, including slow request thresholds.
- Updated various services and retrievers to utilize the new performance logging utility for better tracking of execution times.
- Enhanced existing methods with detailed performance logs for operations such as embedding, searching, and indexing.
- Removed deprecated logging setup in stream_new_chat and replaced it with the new performance logger.
2026-02-27 16:32:30 -08:00
DESKTOP-RTLN3BA\$punk
e9892c8fe9 feat: added configable summary calculation and various improvements
- Replaced direct embedding calls with a utility function across various components to streamline embedding logic.
- Added enable_summary flag to several models and routes to control summary generation behavior.
2026-02-26 18:24:57 -08:00
Anish Sarkar
a57ab02900 feat: Implement file upload limits and page limit enforcement in backend
- Added constants for maximum files per upload, per-file size, and total upload size.
- Enhanced document upload route to validate file counts and sizes, returning appropriate HTTP errors.
- Introduced end-to-end tests for upload limits and page limit enforcement, ensuring correct behavior under various scenarios.
- Updated test helpers to support notification retrieval for page limit exceeded scenarios.
2026-02-26 01:25:34 +05:30
DESKTOP-RTLN3BA\$punk
d198c8b89d chore; linting 2026-02-25 01:50:28 -08:00
Anish Sarkar
aeb2613b2b chore: linting 2026-02-22 04:41:56 +05:30
Anish Sarkar
0e1f0d09e5 feat: enhance file upload tooltip with detailed information on limits and guidelines 2026-02-22 04:20:46 +05:30
Anish Sarkar
f0d170a595 feat: improve chat renaming functionality with dialog support in sidebar components 2026-02-21 23:59:04 +05:30
Anish Sarkar
12b119be59 feat: enhance UI components by replacing unused icons and adding select-none class for improved text selection behavior 2026-02-21 23:24:07 +05:30
Anish Sarkar
ccf8c063da feat: update settings navigation to include section parameters for improved user experience 2026-02-21 22:55:54 +05:30
Anish Sarkar
c7736aa62c feat: adjust pagination size and enhance UI elements in team management and connector popup components 2026-02-21 22:30:41 +05:30
DESKTOP-RTLN3BA\$punk
634f6f24bf chore: linting 2026-02-20 22:44:56 -08:00
DESKTOP-RTLN3BA\$punk
81dfc7102f feat: fixed live connectors citations 2026-02-20 16:45:50 -08:00
mainnebula
b3042a02be fix: prevent file attachment dialog from opening twice
Add a ref-based guard to handleUploadClick that prevents the native file
picker from being triggered a second time when the browser re-dispatches
a click event after the dialog closes. This matches the existing pattern
used in document-upload-popup.tsx for the Upload Documents dialog.
2026-02-17 07:55:25 -05:00
DESKTOP-RTLN3BA\$punk
5825ab9884 feat: updated homepage
- Added the 'lenis' library for smooth scrolling functionality.
- Integrated 'UseCasesGrid' component into the homepage layout.
- Updated 'HeroSection' to replace image elements with 'WalkthroughScroll' for enhanced user experience.
2026-02-16 05:50:47 -08:00
DESKTOP-RTLN3BA\$punk
28d93aed2a feat: enhance inline mention editor to preserve mention tokens
- Updated the text extraction logic to include inline mention tokens for chips, maintaining the original query structure sent to the backend.
- Refactored the text extraction process to improve readability and efficiency.
2026-02-16 01:34:36 -08:00
DESKTOP-RTLN3BA\$punk
81c70befcf chore: linting 2026-02-15 23:38:15 -08:00
Anish Sarkar
2755c0d7c0 chore: update uv.lock and ran linting 2026-02-14 19:09:45 +05:30
Anish Sarkar
3d712e391b feat: add support for LaTeX rendering in Markdown components with rehype-katex and remark-math 2026-02-13 17:03:53 +05:30
DESKTOP-RTLN3BA\$punk
db652116d6 chore: linting 2026-02-09 16:49:11 -08:00
DESKTOP-RTLN3BA\$punk
c979609041 feat: simplified document upload handling
- Introduced a new endpoint for batch document status retrieval, allowing users to check the status of multiple documents in a search space.
- Enhanced the document upload process to return duplicate document IDs and improved response structure.
- Updated schemas to include new response models for document status.
- Removed unused attachment processing code from chat routes and UI components to streamline functionality.
2026-02-09 16:46:54 -08:00
Rohan Verma
6c72854145
Merge pull request #801 from elammertsma/dev
[FEAT] Added new A/B test, made sidebar resizable and made all left sidebars use the same component
2026-02-09 15:05:11 -08:00
Eric Lammertsma
123d3bccf4 Created more relatable chat input suggestions 2026-02-09 12:05:19 -05:00