Browse Source

fixed --listmodels in the situation where there is no claude key

pull/332/head
xssdoctor 1 year ago
parent
commit
ca4ed26b92
  1. 9
      installer/client/cli/utils.py

9
installer/client/cli/utils.py

@ -279,8 +279,11 @@ class Standalone:
def fetch_available_models(self): def fetch_available_models(self):
gptlist = [] gptlist = []
fullOllamaList = [] fullOllamaList = []
claudeList = ['claude-3-opus-20240229', 'claude-3-sonnet-20240229', if "CLAUDE_API_KEY" in os.environ:
'claude-3-haiku-20240307', 'claude-2.1'] claudeList = ['claude-3-opus-20240229', 'claude-3-sonnet-20240229',
'claude-3-haiku-20240307', 'claude-2.1']
else:
claudeList = []
try: try:
if self.client: if self.client:
@ -294,7 +297,7 @@ class Standalone:
for item in models if item.startswith("gpt")] for item in models if item.startswith("gpt")]
gptlist.sort() gptlist.sort()
except APIConnectionError as e: except APIConnectionError as e:
print("OpenAI API key not set. Skipping GPT models.") pass
except Exception as e: except Exception as e:
print(f"Error: {getattr(e.__context__, 'args', [''])[0]}") print(f"Error: {getattr(e.__context__, 'args', [''])[0]}")
sys.exit() sys.exit()

Loading…
Cancel
Save