-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
fix: Knowledge #2966
fix: Knowledge #2966
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate): --------- Co-authored-by: aminediro <aminedirhoussi1@gmail.com>
…r into release/feat/quivr-core-0.1
|
||
alter table "public"."knowledge" add column "file_sha1" text; | ||
|
||
alter table "public"."knowledge" add column "metadata_" jsonb; |
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.
"metadata" column is already in knowledge, do we need to recreate with different name ? If this is an sqlmodel conflict. Their is a way to point a field to a column with different name
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.
I first added it as metadata but it gives an error, apparently i don't have the right to call it metadata so i changed it to metadata_
backend/api/quivr_api/modules/brain/integrations/Multi_Contract/Brain.py
Outdated
Show resolved
Hide resolved
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.
LGTM :+1
fix core-142