-
Notifications
You must be signed in to change notification settings - Fork 151
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
[Do not merge] When chunk_size=0, skip vector db #649
base: main
Are you sure you want to change the base?
Conversation
|
RunLevel.RUN, | ||
"Extracted file not present.", | ||
) | ||
return APIError(message=msg) |
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.
@chandrasekharan-zipstack Currently this error is showing up as html. How do I throw the error in the right format?
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.
Let's huddle for this, didn't get you here @gaya3-zipstack
RunLevel.RUN, | ||
"Extracted file not present.", | ||
) | ||
return APIError(message=msg) |
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.
Let's huddle for this, didn't get you here @gaya3-zipstack
f"{msg} {output[PSKeys.VECTOR_DB]} for doc_id {doc_id}" | ||
try: | ||
# Read from extract_file_path and set that as context | ||
with open(extract_file_path) as 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.
@gaya3-zipstack does this work because the volumes are shared between backend and prompt-service? Was this change tested against a tool run in a workflow or a pipeline?
Quality Gate passedIssues Measures |
What
Current; implementation always uses the indexed nodes when fetching context for prompts. However, when chunk_size=0, since we have to send the entire context, we can directly send the extracted text instead of fetching the chunk from the vector db.
Why
This will improve response time for prompts when chunk_size=0 as vector db need not be accessed
How
When chunk_size=0, the context can be fetched from the extracted text present in the container file system
Can this PR break any existing features. If yes, please list possible items. If no, please explain why. (PS: Admins do not merge the PR without this section filled)
Maybe. Testing required around prompt studio for chunk sizes = 0 and > 0. Suggested to test with plugins also.
Database Migrations
Env Config
Relevant Docs
Related Issues or PRs
SDK PR
Dependencies Versions
Notes on Testing
Screenshots
Profile with Chunk_size=0
Manual indexing on a document. Here after indexing is completed, no nodes are added to the vector DB as shown
Prompt run on top of manual indexing. Here after prompt run, still no records in the vector db. But still, prompt answers are right as the context gets picked up from the extracted text and works fine.
Running a prompt before manual indexing (dynamic indexing would kick in).
Manually remove the extracted file after indexing. Run prompt. This gives an error saying the extracted file is missing
Now, do a manual re-indexing. Extracted file will be re-created. Then run prompt.
Profile with chunk_size =1024
Manual indexing on a document. Here after indexing is completed, nodes are added to the vector DB as shown
Prompt run on top of manual indexing. Prompt run works fine picking context from vector DB.
Running a prompt before manual indexing (dynamic indexing would kick in) as there are no records in vector db.
Dynamic indexing kicked in and prompt run worked fine
Manually remove the records from vector db
On running prompt, we see an error
Manually re-index. Run prompt again and prompt should work fine. Nodes added to vector DB.
Checklist
I have read and understood the Contribution Guidelines.