Browse Source

Merge pull request #368 from RealHurrison/main

fix: The variable 'wisdomFilePath' is already a complete path constru…
pull/387/head
Daniel Miessler 6 months ago committed by GitHub
parent
commit
fffbd81c80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      installer/client/cli/utils.py

2
installer/client/cli/utils.py

@ -172,7 +172,7 @@ class Standalone:
else: else:
user = input_data user = input_data
user_message = {"role": "user", "content": f"{input_data}"} user_message = {"role": "user", "content": f"{input_data}"}
wisdom_File = os.path.join(current_directory, wisdomFilePath) wisdom_File = wisdomFilePath
buffer = "" buffer = ""
system = "" system = ""
if self.pattern: if self.pattern:

Loading…
Cancel
Save