-
-
Notifications
You must be signed in to change notification settings - Fork 174
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: Add a ContextChat provider #2271
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Marcel Klehr <[email protected]>
Signed-off-by: Marcel Klehr <[email protected]>
Signed-off-by: Marcel Klehr <[email protected]>
Signed-off-by: Marcel Klehr <[email protected]>
Signed-off-by: Marcel Klehr <[email protected]>
d6a47a7
to
833c161
Compare
Signed-off-by: Marcel Klehr <[email protected]>
833c161
to
647310a
Compare
Signed-off-by: Marcel Klehr <[email protected]>
Signed-off-by: Marcel Klehr <[email protected]>
9a20cf4
to
12d00e6
Compare
Mmh, I'm getting hundreds of
but context_chat:stats still shows:
Perhaps because initially those bookmarks are all empty, after import and the crawl job still needs to fill them with content... 🤔 |
Signed-off-by: Marcel Klehr <[email protected]>
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.
works nicely for addition and deletions of bookmarks!
* The ID of the provider | ||
* | ||
* @return string | ||
* @since 1.1.0 |
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.
15.x.x here and other places
if (count($items) < 25) { | ||
continue; | ||
} | ||
$this->contentManager->submitContent($this->getAppId(), $items); |
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 the 25 item limit?
also, the submitContent should be outside the loop.
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.
ah sorry I misread it. The items array should still be cleared up when submitContent is called and checked once outside the loop.
submit content has a separate bg job that has a batch size of 20 so might be due to sheer no. of bookmarks? |
No description provided.