forked from Azure/PyRIT
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Feat/wip red teaming #3
Closed
Closed
Conversation
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
* MAINT: PromptRequestPiece object refactor * fixing jupytext * Adding updated notebooks * precommit * pr feedback * moving serializers to models * pr feedback * Reverting str change
…Response.converted_value_data_type in GPTV target (Azure#179) Co-authored-by: Raja Sekhar Rao Dheekonda <rdheekonda@microsoft.com>
* release bump * precommit * Update doc/contributing.md Co-authored-by: Roman Lutz <romanlutz13@gmail.com> * Update doc/contributing.md Co-authored-by: Roman Lutz <romanlutz13@gmail.com> --------- Co-authored-by: Roman Lutz <romanlutz13@gmail.com>
* MAINT Add request validatiom for all prompt targets * Fix mypy errors * Mypy error * Fix bad merge * Address PR feedback * Removed sync validation tests in test prompt target text * Address PR feedback --------- Co-authored-by: Raja Sekhar Rao Dheekonda <rdheekonda@microsoft.com>
wip - generated prompts wip - add scenarios and handle db
QDAP-Fred
force-pushed
the
feat/wip-red-teaming
branch
from
May 3, 2024 23:56
3ed3b94
to
9f58954
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request includes changes to the
doc/code/memory
anddoc/code/targets
directories, as well as the.env_example
and.vscode/settings.json
files. The most important changes include renaming theoriginal_prompt_text
field tooriginal_value
in several files, adding new lines to the.env_example
file, and changing the settings in.vscode/settings.json
.Environment and settings changes:
.env_example
: AddedDATABASE_NAME
andMAX_CONVERSATION_TURN
variables..vscode/settings.json
: Addedfiles.insertFinalNewline
setting.Documentation changes:
doc/code/memory/memory.ipynb
,doc/code/memory/memory.py
,doc/code/memory/memory_export_to_json.ipynb
,doc/code/memory/memory_export_to_json.py
: Renamedoriginal_prompt_text
field tooriginal_value
and made corresponding changes to the code. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21]doc/code/targets/azure_completions.ipynb
: Minor changes to the markdown cell.