Skip to content
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

Merged
merged 12 commits into from
Sep 13, 2024

Conversation

StrongMonkey
Copy link
Contributor

@StrongMonkey StrongMonkey commented Sep 3, 2024

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

ryanhopperlowe
ryanhopperlowe previously approved these changes Sep 4, 2024
@tylerslaton
Copy link
Contributor

Does this implementation make it so my local machine is a mirror of whatever account I've selected for Notion?

Copy link
Contributor

@tylerslaton tylerslaton left a 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.

  1. Could/should we add an option to settings where I can manage all of this instead of having to go to the edit page
  2. 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.
  3. 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?
  4. 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?

@StrongMonkey
Copy link
Contributor Author

StrongMonkey commented Sep 6, 2024

@tylerslaton

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?

It should perform the sync at the first time. I will look at it if it doesn't perform this way.

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?

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.

@StrongMonkey
Copy link
Contributor Author

Does this implementation make it so my local machine is a mirror of whatever account I've selected for Notion?

Yes, files that you select through notion will eventually match files in your local laptop.

@StrongMonkey
Copy link
Contributor Author

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.

@StrongMonkey StrongMonkey changed the title Feat: Adding file through Notion Feat: Adding file through Notion and onedrive Sep 6, 2024
@StrongMonkey
Copy link
Contributor Author

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.

Good point, i will fix Add knowledge to bring parity. For setting page I am not sure, I leans towards not adding it in setting page for now for simplicity of the feature but open to opinions for @cjellick.

@StrongMonkey
Copy link
Contributor Author

@tylerslaton Most of your comments shoud be addressed.

Could/should we add an option to settings where I can manage all of this instead of having to go to the edit page

I think we are just going to punt on this until we have more UX feedback from craig and will

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.

Per standup we are not going to do this

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?

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

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?

So I changed this to be synced on demand. The initial sync will only fetch metadata.

Copy link
Contributor

@tylerslaton tylerslaton left a 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.

tylerslaton
tylerslaton previously approved these changes Sep 10, 2024
Copy link
Contributor

@tylerslaton tylerslaton left a 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));
Copy link
Contributor

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.

Comment on lines +63 to +61
droppedFiles: Map<string, FileDetail>;
setDroppedFiles: React.Dispatch<
Copy link
Contributor

@ryanhopperlowe ryanhopperlowe Sep 10, 2024

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
}

Copy link
Contributor

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

Copy link
Contributor

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

Copy link
Contributor Author

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.

@cjellick
Copy link
Contributor

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

  1. the plus’s functionality is not obvious
  2. the feedback while its pulling the metadata is not good
  3. the paths could be better. maybe by just making them relative?
  4. once i added the files, it was all my files plus the ones in that dir. that was bad
    1. this is the probably the worst thing.
    2. it also should probably have multi-select via range.
    3. i think once i click add, it should be a page dedicated to just those items. or maybe just sorting better would be good enough. maybe a "clear" button to get rid of everything in th emodal
  5. check is very sluggish. dont like the animation
  6. this probably doesnt cut it for future changes to the directory (to sync a diff of files)
  7. error messaging and handling is terrible. outputs all the logs as errors

@StrongMonkey
Copy link
Contributor Author

@tylerslaton @ryanhopperlowe should have addressed all your comments.

@ryanhopperlowe
Copy link
Contributor

Everything looks good, except I think you missed 1 thing. Once that's fixed I'll shoot the approval :)

ryanhopperlowe
ryanhopperlowe previously approved these changes Sep 11, 2024
tylerslaton
tylerslaton previously approved these changes Sep 13, 2024
Copy link
Contributor

@tylerslaton tylerslaton left a 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!

@tylerslaton
Copy link
Contributor

Oh and definitely be sure to fix the merge conflicts 👍🏻

ryanhopperlowe
ryanhopperlowe previously approved these changes Sep 13, 2024
Comment on lines +133 to +142
const clear = async () => {
setIsClearing(true);
try {
await clearOneDriveFiles();
syncOnedrive();
} catch (e) {
setSyncError((e as Error).toString());
} finally {
setIsClearing(false);
}
};

Copy link
Contributor

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]>
@StrongMonkey StrongMonkey merged commit 57f25ab into gptscript-ai:main Sep 13, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants