mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
feat: made agent file sytem optimized
This commit is contained in:
parent
ee0b59c0fa
commit
2cc2d339e6
67 changed files with 8011 additions and 5591 deletions
|
|
@ -7,3 +7,14 @@ export const globalDocumentsQueryParamsAtom = atom<GetDocumentsRequest["queryPar
|
|||
});
|
||||
|
||||
export const documentsSidebarOpenAtom = atom(false);
|
||||
|
||||
export interface AgentCreatedDocument {
|
||||
id: number;
|
||||
title: string;
|
||||
documentType: string;
|
||||
searchSpaceId: number;
|
||||
folderId: number | null;
|
||||
createdById: string | null;
|
||||
}
|
||||
|
||||
export const agentCreatedDocumentsAtom = atom<AgentCreatedDocument[]>([]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue