-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Adding file through Notion and onedrive #401
Conversation
Does this implementation make it so my local machine is a mirror of whatever account I've selected for Notion? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just ran through this flow and had some thoughts about it but overall this looks good and functions really well! Most of this is just UX questions.
- Could/should we add an option to settings where I can manage all of this instead of having to go to the edit page
- It may make sense to add this to the "Add Knowledge" section of a chat interaction. However, that currently doesn't have parity with this either so I'll leave that to your and @cjellick's discretion.
- When I open choose to add a file through notion and then login I come back and eventually have to push the "sync" button after a successful login. Can we instead make it so that it immediately performs a "first time" sync automatically?
- Why did we go with syncing the files down locally? Is there anyway that we could do a "just in time" sync where Notion is the source of truth and I pull from it whenever I actually add a file?
It should perform the sync at the first time. I will look at it if it doesn't perform this way.
Yeah, I kind of went back and forth on this. With onedrive I am going to change this so we only sync down files when you add it into assistant, because in onedrive you can't select the file/folders when you do oauth. For notion it is less of an issue because you can select the pages when doing oauth and that will limit the files it syncs initially. The benefit of syncing down all the files is that later when you add files through assistants, it is relatively fast but yes the initial sync will be slow. |
Yes, files that you select through notion will eventually match files in your local laptop. |
I think I am going to just change the import logic to sync on demand for now. This means that we will only start syncing when the file has been used by assistants. |
Good point, i will fix |
@tylerslaton Most of your comments shoud be addressed.
I think we are just going to punt on this until we have more UX feedback from craig and will
Per standup we are not going to do this
This should run the sync for first time, if it is still happening to you we can sync, doesn't look like the case for me
So I changed this to be synced on demand. The initial sync will only fetch metadata. |
4227375
to
7b01175
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Things are looking good testing locally. Going to do a second pass on the code in the morning and likely approve around then. Thanks for all the addressing of my feedback I really appreciate it. The feature is looking awesome, I love how it all flows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No more blockers for me, just minor nits. Lots of code here so I'd like more eyes on this.
|
||
for (const file of files) { | ||
// check if filepath lives in notion or onedrive integration folders | ||
const baseDir = path.dirname(path.dirname(file)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are we calling path.dirname twice? What is the path we're retrieving? Whatever the answer, it could be a good comment.
droppedFiles: Map<string, FileDetail>; | ||
setDroppedFiles: React.Dispatch< |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: one thing I'd like to start enforcing is that we don't expose any setState
methods anymore. It creates a brittle API and it's difficult to track down where updates are happening.
It'd be better to expose a few pieces of larger (computed) state along with event triggers that have a dedicated purpose.
i.e.
type ContextState = {
droppedFileMap: Record<string, FileDetail>;
removeDroppedFile: (key: string) => void;
dropFile: (key: string, file: FileDetail) => void;
// ... etc
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a key part of a larger effort I'd like to start working on to reduce some complexity in the codebase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still seeing this issue. Can you replace the setDroppedFiles
method something like dropFiles: (files: File[]) => void
and keep the data-conversion logic inside of the context provider
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ryanhopperlowe I DRYed the code bit, but it is not possible to move all the data convertions because setDroppedFiles is used in multiple places where update and delete happens with different implementation.
These are my notes on the feature thus far...its raw and unprocessed and i dont have solutins, just wanted to get it out there
|
d033c59
to
15b269f
Compare
@tylerslaton @ryanhopperlowe should have addressed all your comments. |
Everything looks good, except I think you missed 1 thing. Once that's fixed I'll shoot the approval :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My comments have all been addressed. Thanks!
Oh and definitely be sure to fix the merge conflicts 👍🏻 |
const clear = async () => { | ||
setIsClearing(true); | ||
try { | ||
await clearOneDriveFiles(); | ||
syncOnedrive(); | ||
} catch (e) { | ||
setSyncError((e as Error).toString()); | ||
} finally { | ||
setIsClearing(false); | ||
} | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: you can get most of this logic out of the box with the useAsync
hook that I created
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
Signed-off-by: Daishan Peng <[email protected]>
9daf2ae
3510da8
to
9daf2ae
Compare
Signed-off-by: Daishan Peng <[email protected]>
9daf2ae
to
813a86b
Compare
This PR adds ability to add files through notion and onedrive when using knowledge.
It mainly use https://github.com/gptscript-ai/knowledge-notion-integration and https://github.com/gptscript-ai/knowledge-onedrive-integration to sync down files from notion/onedrive to local disk and keep those up-to-sync. The sync will be run every 24 hours or can be triggered manually.
#323