-
Notifications
You must be signed in to change notification settings - Fork 880
feat: Refactor backend to a rest api #346
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
7e65aac
WIP: Refactor backend to a rest api and make weak changes to the fron…
ix-56h e569af4
fix: remove references to ingest_id and add download feature
ix-56h e610f5d
Fix ruff issues
ix-56h 1fb8085
fix: ruff errors
ix-56h 736d17f
Merge branch 'main' into feat_rest_api
filipchristiansen c3eacaf
fix: ruff errors and add ruff to pyproject dev dependancies to avoid …
ix-56h 74b8957
remove useless doc
ix-56h 8693c55
refactor: centralize PAT validation, streamline repo checks & misc cl…
filipchristiansen f244494
WIP: Refactor backend to a rest api and make weak changes to the fron…
ix-56h 2516879
fix weird behavior after rebase attempt
ix-56h fa1f7fa
clean after rebase
ix-56h 552c3f8
Merge branch 'main' into feat_rest_api
ix-56h 5317abf
remove api ingest endpoint test (duplicate)
ix-56h b897bf2
refactor: Refactor backend to a rest api and make weak changes to the…
ix-56h e986348
Remove uv.lock from version control
ix-56h 0ddf255
remove useless api_models.md docs
ix-56h 974f309
pre-commit cleaning
ix-56h 990a90b
Update .gitignore
ix-56h 535e726
resolve review comments and remove is_index argument from process_query
ix-56h 5e87100
resolve remaining comments
ix-56h a234adc
Reset .gitignore to match main branch
ix-56h aa718a5
fix: remove result bool in Success response object since it's useless…
ix-56h 373fe34
fix: clean query processor return types, remove deprecated fields, be…
ix-56h fb57c51
fix: unit tests, remove deprecated is_index from jinja templates
ix-56h File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"""Module containing the routers for the FastAPI application.""" | ||
|
||
from server.routers.download import router as download | ||
from server.routers.dynamic import router as dynamic | ||
from server.routers.index import router as index | ||
from server.routers.ingest import router as ingest | ||
|
||
__all__ = ["download", "dynamic", "index"] | ||
__all__ = ["dynamic", "index", "ingest"] |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.