File size: 17,425 Bytes
ced52ae e17782d 3a5a2dc 98c28c1 e17782d 3a5a2dc e17782d 91a1375 a665f3a e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d a665f3a 3a5a2dc e17782d a665f3a 3a5a2dc e17782d a665f3a 3a5a2dc e17782d 3a5a2dc e17782d a665f3a 3a5a2dc 98c28c1 e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc 0606965 e17782d 3a5a2dc 077f8e0 e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 3a5a2dc e17782d 18adb0b 3a5a2dc 18adb0b e17782d 98c28c1 e17782d 3a5a2dc e17782d 077f8e0 e17782d 077f8e0 3a5a2dc e17782d 98c28c1 e17782d 98c28c1 3a5a2dc e17782d 98c28c1 e17782d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
import asyncio
import gradio as gr
import requests
import re
from api_usage import (
get_subscription,
check_key_availability,
get_orgs_me,
check_key_ant_availability,
check_ant_rate_limit,
check_key_gemini_availability,
check_key_azure_availability,
get_azure_status,
get_azure_deploy,
check_key_mistral_availability,
check_mistral_quota,
check_key_replicate_availability,
check_key_aws_availability,
check_key_or_availability,
check_key_or_limits,
check_gcp_anthropic,
check_groq_status,
check_nai_status,
check_elevenlabs_status,
check_xai_status,
check_stability_status,
check_deepseek_status,
)
# βββββββββββββββββββββββββββββββββββββββββ
# Key-specific helper functions (μλ³Έ μ μ§)
# βββββββββββββββββββββββββββββββββββββββββ
def get_key_oai_info(key):
session = requests.Session()
status, org_data = check_key_availability(session, key)
info_dict = {
"key_type": "OpenAI",
"key_availability": True if status else False,
"gpt4_availability": "",
"gpt4_32k_availability": "",
"default_org": "",
"org_description": "",
"organization": "",
"models": "",
"requests_per_minute": "",
"tokens_per_minute": "",
"quota": "",
"all_models": "",
}
if not status:
return info_dict
if status == 403:
status_me, orgs_me = get_orgs_me(session, key)
if status_me == 200:
org_data = orgs_me
subscription_info = get_subscription(key, session, org_data)
info_dict.update(
{
"gpt4_availability": subscription_info["has_gpt4"],
"gpt4_32k_availability": subscription_info["has_gpt4_32k"],
"default_org": subscription_info["default_org"],
"org_description": subscription_info["org_description"],
"organization": subscription_info["organization"],
"models": subscription_info["models"],
"requests_per_minute": subscription_info["rpm"],
"tokens_per_minute": subscription_info["tpm"],
"quota": subscription_info["quota"],
"all_models": subscription_info["all_models"],
}
)
return info_dict
async def get_key_ant_info(key, rate_limit, claude_model):
key_avai = await check_key_ant_availability(key, claude_model)
info_dict = {
"key_type": "Anthropic Claude",
"key_availability": key_avai[0],
"status": "",
"filter_response": "",
"requests_per_minute": "",
"tokens_per_minute": "",
"tokens_input_per_minute": "",
"tokens_output_per_minute": "",
"tier": "",
"concurrent_rate_limit": "",
"models": "",
}
info_dict["status"] = key_avai[1]
info_dict["filter_response"] = key_avai[2]
info_dict["requests_per_minute"] = key_avai[3] + ("" if key_avai[3] == "" else f" ({key_avai[4]} left)")
info_dict["tokens_per_minute"] = key_avai[5] + ("" if key_avai[5] == "" else f" ({key_avai[6]} left)")
info_dict["tokens_input_per_minute"] = key_avai[8] + ("" if key_avai[8] == "" else f" ({key_avai[9]} left)")
info_dict["tokens_output_per_minute"] = key_avai[10] + ("" if key_avai[10] == "" else f" ({key_avai[11]} left)")
info_dict["tier"] = key_avai[7]
info_dict["models"] = key_avai[12]
if rate_limit:
rate = await check_ant_rate_limit(key, claude_model)
info_dict["concurrent_rate_limit"] = rate
return info_dict
def get_key_gemini_info(key):
key_avai = check_key_gemini_availability(key)
info_dict = {
"key_type": "Google Gemini",
"key_availability": key_avai[0],
"status": key_avai[1],
"models": key_avai[2],
}
return info_dict
def get_key_azure_info(endpoint, api_key):
key_avai = check_key_azure_availability(endpoint, api_key)
info_dict = {
"key_type": "Microsoft Azure OpenAI",
"key_availability": key_avai[0],
"gpt35_availability": "",
"gpt4_availability": "",
"gpt4_32k_availability": "",
"dall_e_3_availability": "",
"moderation_status": "",
"models": "",
"deployments": "",
}
if key_avai[0]:
azure_deploy = get_azure_deploy(endpoint, api_key)
status = get_azure_status(endpoint, api_key, azure_deploy)
info_dict["gpt35_availability"] = status[1]
info_dict["gpt4_availability"] = status[2]
info_dict["gpt4_32k_availability"] = status[3]
info_dict["dall_e_3_availability"] = status[4]
info_dict["moderation_status"] = status[0]
info_dict["models"] = key_avai[1]
info_dict["deployments"] = azure_deploy
return info_dict
def get_key_mistral_info(key):
key_avai = check_key_mistral_availability(key)
info_dict = {
"key_type": "Mistral AI",
"key_availability": True if key_avai else False,
"has_quota": "",
"limits": "",
"models": "",
}
if key_avai:
quota_info = check_mistral_quota(key)
info_dict["has_quota"] = quota_info[0]
if quota_info[1]:
info_dict["limits"] = quota_info[1]
info_dict["models"] = key_avai
return info_dict
def get_key_replicate_info(key):
key_avai = check_key_replicate_availability(key)
info_dict = {
"key_type": "Replicate",
"key_availability": key_avai[0],
"account_name": "",
"type": "",
"has_quota": "",
"hardware_available": "",
}
if key_avai[0]:
info_dict["account_name"] = key_avai[1]["username"]
info_dict["type"] = key_avai[1]["type"]
info_dict["has_quota"] = key_avai[2]
info_dict["hardware_available"] = key_avai[3]
return info_dict
async def get_key_aws_info(key):
key_avai = await check_key_aws_availability(key)
info_dict = {
"key_type": "Amazon AWS Claude",
"key_availability": key_avai[0],
"username": "",
"root": "",
"admin": "",
"quarantine": "",
"iam_full_access": "",
"iam_user_change_password": "",
"aws_bedrock_full_access": "",
"enabled_region": "",
"models_usage": "",
"cost_and_usage": key_avai[1],
}
if key_avai[0]:
info_dict["username"] = key_avai[1]
info_dict["root"] = key_avai[2]
info_dict["admin"] = key_avai[3]
info_dict["quarantine"] = key_avai[4]
info_dict["iam_full_access"] = key_avai[5]
info_dict["iam_user_change_password"] = key_avai[6]
info_dict["aws_bedrock_full_access"] = key_avai[7]
info_dict["enabled_region"] = key_avai[8]
info_dict["models_usage"] = key_avai[9]
info_dict["cost_and_usage"] = key_avai[10]
return info_dict
def get_key_openrouter_info(key):
key_avai = check_key_or_availability(key)
info_dict = {
"key_type": "OpenRouter",
"key_availability": key_avai[0],
"is_free_tier": "",
"usage": "",
"balance": "",
"limit": "",
"limit_remaining": "",
"rate_limit_per_minite": "",
"4_turbo_per_request_tokens_limit": "",
"sonnet_per_request_tokens_limit": "",
"opus_per_request_tokens_limit": "",
}
if key_avai[0]:
models_info = check_key_or_limits(key)
info_dict["is_free_tier"] = key_avai[1]["is_free_tier"]
info_dict["limit"] = key_avai[1]["limit"]
info_dict["limit_remaining"] = key_avai[1]["limit_remaining"]
info_dict["usage"] = f"${format(key_avai[1]['usage'], '.4f')}"
info_dict["balance"] = (
f"${format(models_info[0], '.4f')}" if models_info[0] else f"${key_avai[2]/60} (estimated)"
)
info_dict["rate_limit_per_minite"] = key_avai[2]
info_dict["4_turbo_per_request_tokens_limit"] = models_info[1]["openai/gpt-4o"]
info_dict["sonnet_per_request_tokens_limit"] = models_info[1]["anthropic/claude-3.5-sonnet:beta"]
info_dict["opus_per_request_tokens_limit"] = models_info[1]["anthropic/claude-3-opus:beta"]
else:
info_dict["usage"] = key_avai[1]
return info_dict
async def get_key_gcp_info(key, type):
key_avai = await check_gcp_anthropic(key, type)
info_dict = {
"key_type": "Vertex AI (GCP)",
"key_availability": key_avai[0],
"status": "",
"enabled_region": "",
}
if key_avai[0]:
info_dict["enabled_region"] = key_avai[2]
else:
info_dict["status"] = key_avai[1]
return info_dict
def get_key_groq_info(key):
key_avai = check_groq_status(key)
info_dict = {
"key_type": "Groq",
"key_availability": True if key_avai else False,
"models": key_avai if key_avai else "",
}
return info_dict
def get_key_nai_info(key):
key_avai = check_nai_status(key)
info_dict = {
"key_type": "NovelAI",
"key_availability": True if key_avai[0] else False,
"user_info": key_avai[1] if key_avai[0] else "",
}
return info_dict
def get_key_elevenlabs_info(key):
key_avai = check_elevenlabs_status(key)
info_dict = {
"key_type": "ElevenLabs",
"key_availability": key_avai[0],
"user_info": key_avai[1],
"voices_info": key_avai[2],
}
return info_dict
def get_key_xai_info(key):
key_avai = check_xai_status(key)
info_dict = {
"key_type": "xAI Grok",
"key_availability": key_avai[0],
"key_status": "",
"models": "",
}
if key_avai[0]:
info_dict["key_status"] = key_avai[1]
info_dict["models"] = key_avai[2]
return info_dict
def get_key_stability_info(key):
key_avai = check_stability_status(key)
info_dict = {
"key_type": "Stability AI",
"key_availability": key_avai[0],
"account_info": "",
"credits": "",
"models": "",
}
if key_avai[0]:
info_dict["account_info"] = key_avai[1]
info_dict["credits"] = key_avai[2]
info_dict["models"] = key_avai[3]
return info_dict
def get_key_deepseek_info(key):
key_avai = check_deepseek_status(key)
info_dict = {
"key_type": "deepseek",
"key_availability": key_avai[0],
"balance": "",
"models": "",
}
if key_avai[0]:
info_dict["models"] = key_avai[1]
info_dict["balance"] = key_avai[2]
return info_dict
def not_supported(key):
return {
"key_type": "Not supported",
"status": "",
}
# βββββββββββββββββββββββββββββββββββββββββ
# μλ‘ μΆκ°: λ¨μΌ ν€ λΉλκΈ° μ²λ¦¬
# βββββββββββββββββββββββββββββββββββββββββ
async def process_single_key(key: str, rate_limit: bool, claude_model: str) -> dict:
"""μ£Όμ΄μ§ key νλλ₯Ό λΆμν΄ μ 보 dict λ°ν."""
_key = key.strip()
# OpenRouter
if re.match(re.compile(r"sk-or-v1-[a-z0-9]{64}"), _key):
return {"key": _key, **get_key_openrouter_info(_key)}
# Anthropic Claude
if re.match(re.compile(r"sk-ant-api03-[a-zA-Z0-9\-_]{93}AA"), _key) or (
_key.startswith("sk-ant-") and len(_key) == 93
) or (len(_key) == 89 and re.match(re.compile(r"sk-[a-zA-Z0-9]{86}"), _key)):
return {"key": _key, **await get_key_ant_info(_key, rate_limit, claude_model)}
# Stability
if re.match(re.compile(r"sk-[a-zA-Z0-9]{48}"), _key) and len(_key) == 51 and "T3BlbkFJ" not in _key:
return {"key": _key, **get_key_stability_info(_key)}
# Deepseek
if re.match(re.compile(r"sk-[a-f0-9]{32}"), _key):
return {"key": _key, **get_key_deepseek_info(_key)}
# OpenAI
if _key.startswith("sk-"):
return {"key": _key, **get_key_oai_info(_key)}
# Google Gemini
if _key.startswith("AIzaSy"):
return {"key": _key, **get_key_gemini_info(_key)}
# NovelAI
if _key.startswith("pst-"):
return {"key": _key, **get_key_nai_info(_key)}
# Replicate
if (_key.startswith("r8_") and len(_key) == 40) or (_key.islower() and len(_key) == 40):
return {"key": _key, **get_key_replicate_info(_key)}
# xAI
if _key.startswith("xai-"):
return {"key": _key, **get_key_xai_info(_key)}
# Azure endpoint: "name:key"
if len(_key.split(":")) == 2 and _key.split(":")[1].islower() and len(_key.split(":")[1]) == 32 and "openai.azure.com" not in _key.split(":")[1]:
endpoint, api_key = _key.split(":")
return {"key": _key, **get_key_azure_info(endpoint, api_key)}
# Azure endpoint: "https://xxx.openai.azure.com;key"
if "openai.azure.com" in _key.split(";")[0]:
endpoint, api_key = _key.split(";")
return {"key": _key, **get_key_azure_info(endpoint, api_key)}
# AWS
if _key.startswith("AKIA") and len(_key.split(":")[0]) == 20 and _key.split(":")[0].isupper():
return {"key": _key, **await get_key_aws_info(_key)}
# ElevenLabs
if re.match(re.compile(r"[a-f0-9]{32}"), _key) or re.match(re.compile(r"sk_[a-f0-9]{48}"), _key):
return {"key": _key, **get_key_elevenlabs_info(_key)}
# Mistral
if re.match(re.compile(r"[a-zA-Z0-9]{32}"), _key):
return {"key": _key, **get_key_mistral_info(_key)}
# Groq
if re.match(re.compile(r"gsk_[a-zA-Z0-9]{20}WGdyb3FY[a-zA-Z0-9]{24}"), _key):
return {"key": _key, **get_key_groq_info(_key)}
# GCP - refresh token
if re.match(re.compile(r"[\w\-]+:[\w\-@\.]+:[\w-]+:.+"), _key):
return {"key": _key, **await get_key_gcp_info(_key, 0)}
# GCP - service account
if re.match(re.compile(r"[\w\-]+:[\w\-@\.]+:.+\\n"), _key):
return {"key": _key, **await get_key_gcp_info(_key, 1)}
# Not supported
return {"key": _key, **not_supported(_key)}
# βββββββββββββββββββββββββββββββββββββββββ
# μ¬λ¬ key λΉλκΈ° μ²λ¦¬ ν¨μ
# βββββββββββββββββββββββββββββββββββββββββ
async def sort_keys(text: str, rate_limit: bool, claude_model: str):
"""ν
μ€νΈ λ°μ€μ μ
λ ₯λ μ¬λ¬ ν€λ₯Ό μ€ λ¨μλ‘ λΆμ."""
keys = [k.strip() for k in text.splitlines() if k.strip()]
tasks = [process_single_key(k, rate_limit, claude_model) for k in keys]
results = await asyncio.gather(*tasks)
return results # gr.JSON μ»΄ν¬λνΈκ° 리μ€νΈλ μλ νμ
# βββββββββββββββββββββββββββββββββββββββββ
# UI util
# βββββββββββββββββββββββββββββββββββββββββ
def clear_inputs(text: str):
return ""
# βββββββββββββββββββββββββββββββββββββββββ
# Gradio UI
# βββββββββββββββββββββββββββββββββββββββββ
with gr.Blocks() as demo:
gr.Markdown(
"""
# OpenAI/Anthropic/Gemini/Azure/Mistral/Replicate/AWS Claude/OpenRouter/Vertex AI(GCP Anthropic)/Groq/NovelAI/ElevenLabs/xAI/Stability/Deepseek API Key Status Checker
*(Based on shaocongma, CncAnon1, su, Drago, kingbased key checkers)*
AWS credential format: `AWS_ACCESS_KEY_ID:AWS_SECRET_ACCESS_KEY` (root might not be accurate)
Azure format: `RESOURCE_NAME:API_KEY` **or** `https://RESOURCE_NAME.openai.azure.com;API_KEY`
GCP format:
β’ Service account β `PROJECT_ID:CLIENT_EMAIL:PRIVATE_KEY(\\n ν¬ν¨)`
β’ Refresh token β `PROJECT_ID:CLIENT_ID:CLIENT_SECRET:REFRESH_TOKEN`
"""
)
claude_options = [
"claude-3-haiku-20240307",
"claude-3-sonnet-20240229",
"claude-3-opus-20240229",
"claude-3-5-sonnet-20240620",
"claude-3-5-sonnet-20241022",
"claude-3-5-haiku-20241022",
]
with gr.Row():
with gr.Column():
key_box = gr.Textbox(
lines=5,
max_lines=20,
label="API Key(s) β μ€λ°κΏμΌλ‘ μ¬λ¬ κ° μ
λ ₯",
placeholder="κ° μ€λ§λ€ νλμ ν€λ₯Ό μ
λ ₯νμΈμ",
)
claude_model = gr.Dropdown(
claude_options,
value="claude-3-haiku-20240307",
label="Claude API model (filter/concurrent checkμ©)",
)
rate_limit = gr.Checkbox(label="Check concurrent rate limit (Claude, experimental)")
with gr.Row():
clear_button = gr.Button("Clear")
submit_button = gr.Button("Submit", variant="primary")
with gr.Column():
info = gr.JSON(label="API Key Information", open=True)
clear_button.click(fn=clear_inputs, inputs=[key_box], outputs=[key_box])
submit_button.click(
fn=sort_keys,
inputs=[key_box, rate_limit, claude_model],
outputs=[info],
api_name="sort_keys",
)
demo.launch() |