""" Method to update patterns and exit the system.
""" Method to update patterns and exit the system.
@ -482,10 +517,13 @@ class Setup:
print("Welcome to Fabric. Let's get started.")
print("Welcome to Fabric. Let's get started.")
apikey=input(
apikey=input(
"Please enter your OpenAI API key. If you do not have one or if you have already entered it, press enter.\n")
"Please enter your OpenAI API key. If you do not have one or if you have already entered it, press enter.\n")
self.api_key(apikey.strip())
self.api_key(apikey)
print("Please enter your claude API key. If you do not have one, or if you have already entered it, press enter.\n")
claudekey=input(
claudekey=input()
"Please enter your claude API key. If you do not have one, or if you have already entered it, press enter.\n")
self.claude_key(claudekey.strip())
self.claude_key(claudekey)
custom_model=input(
"Please enter your custom model. If you do not have one, or if you have already entered it, press enter. If none is entered, it will default to gpt-4-turbo-preview\n")