Skip to content
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

Small fixes #5

Merged
merged 2 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading