-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/mrq filter by low confidence (#850)
* added place holder utils for mrq db rules functionality and frontend changes * added urls and view to get prompt tools details * renamed db rules function to avoid confusion * Update frontend/src/components/agency/configure-connector-modal/ConfigureConnectorModal.jsx Co-authored-by: jagadeeswaran-zipstack <[email protected]> Signed-off-by: vishnuszipstack <[email protected]> * Pr comment fixes * added enum * added constants --------- Signed-off-by: vishnuszipstack <[email protected]> Co-authored-by: jagadeeswaran-zipstack <[email protected]>
- Loading branch information
1 parent
3c491e5
commit 8a01ca2
Showing
7 changed files
with
59 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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,3 +1,15 @@ | ||
from django.urls import path | ||
from rest_framework.urlpatterns import format_suffix_patterns | ||
|
||
urlpatterns = format_suffix_patterns([]) | ||
from .views import PromptStudioRegistryView | ||
|
||
urlpatterns = [ | ||
path( | ||
"registry/", | ||
PromptStudioRegistryView.as_view({"get": "list"}), | ||
name="prompt_studio_registry_list", | ||
), | ||
] | ||
|
||
# Optional: Apply format suffix patterns | ||
urlpatterns = format_suffix_patterns(urlpatterns) |
This file contains 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 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 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 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 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 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