-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/prompt studio document manager (#78)
* Implemented re-index * Fixed data persistence issue in the summarize modal * Reverted to the default background color of the PDF viewer * UI Improvements in Output Analyzer * Fixed issue with spaces in the prompt/notes card * Added loader to the submit button * Revert "FIX: Prompt Studio Bug Fixed (#65)" This reverts commit 35429b1. * Revert "Revert "FIX: Prompt Studio Bug Fixed (#65)"" This reverts commit 1e2921d. * Revert "FIX: Prompt Studio Bug Fixed (#65)" This reverts commit 35429b1. * Backend changes related to document manager * UI changes related to document manager * Index Manager and Document Manager changes * Code efficiency improvement in the document manager BE * UI changes to support document manager changes * implemented new design * Added API support for index manager * FE changes for showing the indexing status in the Manage Documents table * fixed prompt list not updated after adding new prompt * UI bug fixes and improvements * UI bug fixes * Optimized migrations * Modification in migrations * Code quality improvement --------- Co-authored-by: Neha <[email protected]> Co-authored-by: Jaseem Jas <[email protected]> Co-authored-by: jagadeeswaran-zipstack <[email protected]>
- Loading branch information
1 parent
80d4870
commit af6139f
Showing
65 changed files
with
1,642 additions
and
720 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
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
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
Empty file.
5 changes: 5 additions & 0 deletions
5
backend/prompt_studio/prompt_studio_document_manager/admin.py
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.contrib import admin | ||
|
||
from .models import DocumentManager | ||
|
||
admin.site.register(DocumentManager) |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class PromptStudioDocumentManagerConfig(AppConfig): | ||
name = 'prompt_studio.prompt_studio_document_manager' |
4 changes: 4 additions & 0 deletions
4
backend/prompt_studio/prompt_studio_document_manager/constants.py
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
class PSDMKeys: | ||
DOCUMENT_NAME = "document_name" | ||
TOOL = "tool" | ||
DOCUMENT_ID = "document_id" |
Oops, something went wrong.