-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Model List? #458
Comments
Anthropic doesn't have an API for that. Web UIs like big-agi hardcode the list of models. Bedrock does. Here's some Python code to get the list of models via Bedrock, but note the identifiers will be in a different format, e.g. import boto3
bedrock = boto3.client(service_name="bedrock", region_name="us-west-2")
response = bedrock.list_foundation_models(byProvider="anthropic")
for summary in response["modelSummaries"]:
print(summary["modelId"]) |
Sorry, Anthropic does not offer an API for listing available models at this time. |
For those who land here from a search, Anthropic now offers a model list endpoint - https://docs.anthropic.com/en/api/models-list |
Hello there, I can't find a method to retrieve models list... I can't believe Anthropic is the only LLM API which doesn't have, so I must missing something... Could anyone help me, please?
The text was updated successfully, but these errors were encountered: