Browse Source

Merge pull request #185 from streichsbaer/feat/add-supported-claude-models

feat: Add additional Claude models
pull/199/head
Daniel Miessler 8 months ago committed by GitHub
parent
commit
8f81d881e1
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

@ -263,7 +263,7 @@ class Standalone:
def fetch_available_models(self):
gptlist = []
fullOllamaList = []
claudeList = ['claude-3-opus-20240229']
claudeList = ['claude-3-opus-20240229', 'claude-3-sonnet-20240229', 'claude-2.1']
try:
models = [model.id for model in self.client.models.list().data]
except APIConnectionError as e:

Loading…
Cancel
Save