mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 11:11:27 +08:00
4 lines
125 B
JavaScript
4 lines
125 B
JavaScript
export default function isValidAnthropicApiKey(apiKey) {
|
|
const regex = /^sk-ant-[a-zA-Z0-9]/;
|
|
return regex.test(apiKey);
|
|
}
|