removes claude v1 from AWS keychecker as it has been retired
This commit is contained in:
parent
bd15728743
commit
93cee1db9b
|
@ -45,7 +45,7 @@ You can also request Claude Instant, but support for this isn't fully implemente
|
|||
### Supported model IDs
|
||||
Users can send these model IDs to the proxy to invoke the corresponding models.
|
||||
- **Claude**
|
||||
- `anthropic.claude-v1` (~18k context, claude 1.3)
|
||||
- `anthropic.claude-v1` (~18k context, claude 1.3 -- EOL 2024-02-28)
|
||||
- `anthropic.claude-v2` (~100k context, claude 2.0)
|
||||
- `anthropic.claude-v2:1` (~200k context, claude 2.1)
|
||||
- **Claude Instant**
|
||||
|
|
|
@ -30,7 +30,6 @@ const getModelsResponse = () => {
|
|||
if (!config.awsCredentials) return { object: "list", data: [] };
|
||||
|
||||
const variants = [
|
||||
"anthropic.claude-v1",
|
||||
"anthropic.claude-v2",
|
||||
"anthropic.claude-v2:1",
|
||||
];
|
||||
|
|
|
@ -47,8 +47,8 @@ export class AwsKeyChecker extends KeyCheckerBase<AwsBedrockKey> {
|
|||
const modelChecks: Promise<unknown>[] = [];
|
||||
const isInitialCheck = !key.lastChecked;
|
||||
if (isInitialCheck) {
|
||||
modelChecks.push(this.invokeModel("anthropic.claude-v1", key));
|
||||
modelChecks.push(this.invokeModel("anthropic.claude-v2", key));
|
||||
modelChecks.push(this.invokeModel("anthropic.claude-v2:1", key));
|
||||
}
|
||||
|
||||
await Promise.all(modelChecks);
|
||||
|
|
Loading…
Reference in New Issue