You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows users to use consistent model names regardless of provider.
90
+
If a model can't be found with the provided ID and provider, a `ModelNotFoundError` will be raised with an informative message. Your implementation should make this error helpful by suggesting available alternatives.
91
+
92
+
When the same model has multiple versions and context windows e.g.
93
+
94
+
```
95
+
anthropic.claude-3-5-sonnet-20240620-v1:0
96
+
anthropic.claude-3-5-sonnet-20240620-v1:0:18k
97
+
anthropic.claude-3-5-sonnet-20240620-v1:0:200k
98
+
anthropic.claude-3-5-sonnet-20240620-v1:0:51k
99
+
anthropic.claude-3-5-sonnet-20241022-v2:0
100
+
anthropic.claude-3-5-sonnet-20241022-v2:0:18k
101
+
anthropic.claude-3-5-sonnet-20241022-v2:0:200k
102
+
anthropic.claude-3-5-sonnet-20241022-v2:0:51k
103
+
```
104
+
105
+
We default all aliases to the biggest context window, and the main alias (without date) to the latest version:
0 commit comments