Skip to content

Commit

Permalink
Merge pull request #5 from prompt-security/small_fixes
Browse files Browse the repository at this point in the history
Small fixes
  • Loading branch information
vitaly-ps authored Apr 15, 2024
2 parents b33d4cd + 5a1123f commit 1d3344c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion ps_fuzz/app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ def system_prompt(self) -> str:

@system_prompt.setter
def system_prompt(self, value: str):
if not value: raise ValueError("System prompt cannot be empty")
self.config_state['system_prompt'] = value
self.save()

Expand Down
4 changes: 3 additions & 1 deletion ps_fuzz/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
load_dotenv()
import sys
import colorama
import os
from .chat_clients import *
from .client_config import ClientConfig
from .attack_config import AttackConfig
Expand All @@ -18,7 +19,8 @@
RESET = colorama.Style.RESET_ALL
BRIGHT = colorama.Style.BRIGHT

APP_CONFIG_FILE = ".psfuzz-config.json"
# Maintain configuration state in the user's home directory
APP_CONFIG_FILE = os.path.join(os.path.expanduser("~"), ".psfuzz-config.json")

def main():
# Print the logo
Expand Down

0 comments on commit 1d3344c

Please sign in to comment.