Skip to content

Commit

Permalink
Update TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack committed Mar 20, 2024
1 parent c237038 commit e4f549e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

## High Priority

- Use own worker for indexing
- Fix pagination of search results
- Thinks about a better delete strategy
- Delete document_id from Vespa schema and extract it from the returned id
- <https://docs.vespa.ai/en/documents.html#document-ids>
- Check if for RAG ranking should be turned off for performance improvements (and using some fixed sort order)
- Some present provider.max_results to the user somehow, especially important if the query results (step 1) is larger
- task control panel
Expand Down
1 change: 1 addition & 0 deletions radis/vespa/utils/document_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def callback(response: VespaResponse, id: str):


def _extract_document_id(documentid: str) -> str:
# https://docs.vespa.ai/en/documents.html#document-ids
return documentid.split(":")[-1]


Expand Down

0 comments on commit e4f549e

Please sign in to comment.