Merge pull request #667 from BtrYrSlf/Update-Text

Removing the note about pattern updates changing the default model
This commit is contained in:
Daniel Miessler 2024-07-01 13:28:14 -07:00 committed by GitHub
commit 19df135c7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ options:
sets the frequency penalty for the model. Default is 0.1
--presence_penalty PRESENCE_PENALTY
sets the presence penalty for the model. Default is 0.1
--update, -u Update patterns. NOTE: This will revert the default model to gpt4-turbo. please run --changeDefaultModel to once again set the default model
--update, -u Update patterns.
--pattern PATTERN, -p PATTERN
The pattern (prompt) to use
--setup Set up your fabric instance

View File

@ -55,7 +55,7 @@ def main():
parser.add_argument(
'--presence_penalty', help="set the presence penalty for the model. Default is 0.1", default=0.1, type=float)
parser.add_argument(
"--update", "-u", help="Update patterns. NOTE: This will revert the default model to gpt4-turbo. please run --changeDefaultModel to once again set default model", action="store_true")
"--update", "-u", help="Update patterns", action="store_true")
parser.add_argument("--pattern", "-p", help="The pattern (prompt) to use")
parser.add_argument(
"--setup", help="Set up your fabric instance", action="store_true"