Merge pull request #667 from BtrYrSlf/Update-Text

Removing the note about pattern updates changing the default model
pull/681/head
Daniel Miessler 3 months ago committed by GitHub
commit 19df135c7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

@ -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"

Loading…
Cancel
Save