superdup95 commited on
Commit
18adb0b
·
verified ·
1 Parent(s): 8a4c1c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -10
app.py CHANGED
@@ -2,14 +2,14 @@ import gradio as gr
2
  import requests, re
3
  from api_usage import get_subscription, check_key_availability, 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
4
 
5
- async def sort_key(key, rate_limit, claude_opus):
6
  _key = key.strip()
7
 
8
  if _key.startswith("sk-or-v1-") and re.match(re.compile("sk-or-v1-[a-z0-9]{64}"), _key):
9
  return get_key_openrouter_info(_key)
10
 
11
  if _key.startswith("sk-ant-") and re.match(re.compile("sk-ant-api03-[a-zA-Z0-9\-_]{93}AA"), _key):
12
- return await get_key_ant_info(_key, rate_limit, claude_opus)
13
 
14
  if _key.startswith("sk-"):
15
  return get_key_oai_info(_key)
@@ -88,9 +88,9 @@ def get_key_oai_info(key):
88
  info_dict["quota"] = info["quota"]
89
  return info_dict
90
 
91
- async def get_key_ant_info(key, rate_limit, claude_opus):
92
  # Return a dictionary containing key information
93
- key_avai = check_key_ant_availability(key, claude_opus)
94
  info_dict = {#"account_name": "",
95
  "key_type": "Anthropic Claude",
96
  "key_availability": key_avai[0],
@@ -108,7 +108,7 @@ async def get_key_ant_info(key, rate_limit, claude_opus):
108
  info_dict["tier"] = key_avai[7]
109
 
110
  if rate_limit:
111
- rate = await check_ant_rate_limit(key)
112
  info_dict["concurrent_rate_limit"] = rate
113
 
114
  return info_dict
@@ -295,12 +295,17 @@ with gr.Blocks() as demo:
295
  GCP format: PROJECT_ID:CLIENT_EMAIL:PRIVATE_KEY (including \\n)
296
  | or refresh token: PROJECT_ID:CLIENT_ID:CLIENT_SECRET:REFRESH_TOKEN
297
  ''')
298
-
 
 
 
 
 
299
  with gr.Row():
300
  with gr.Column():
301
  key = gr.Textbox(lines=1, max_lines=5, label="API Key")
302
- rate_limit = gr.Checkbox(label="Check concurrent rate limit (API Claude)")
303
- claude_opus = gr.Checkbox(label="Use claude-3-opus for filter_response check? (default: claude-3-haiku)")
304
  with gr.Row():
305
  clear_button = gr.Button("Clear")
306
  submit_button = gr.Button("Submit", variant="primary")
@@ -308,5 +313,5 @@ with gr.Blocks() as demo:
308
  info = gr.JSON(label="API Key Information")
309
 
310
  clear_button.click(fn=clear_inputs, inputs=[key], outputs=[key])
311
- submit_button.click(fn=sort_key, inputs=[key, rate_limit, claude_opus], outputs=[info], api_name="sort_key")
312
- demo.launch()
 
2
  import requests, re
3
  from api_usage import get_subscription, check_key_availability, 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
4
 
5
+ async def sort_key(key, rate_limit, claude_model):
6
  _key = key.strip()
7
 
8
  if _key.startswith("sk-or-v1-") and re.match(re.compile("sk-or-v1-[a-z0-9]{64}"), _key):
9
  return get_key_openrouter_info(_key)
10
 
11
  if _key.startswith("sk-ant-") and re.match(re.compile("sk-ant-api03-[a-zA-Z0-9\-_]{93}AA"), _key):
12
+ return await get_key_ant_info(_key, rate_limit, claude_model)
13
 
14
  if _key.startswith("sk-"):
15
  return get_key_oai_info(_key)
 
88
  info_dict["quota"] = info["quota"]
89
  return info_dict
90
 
91
+ async def get_key_ant_info(key, rate_limit, claude_model):
92
  # Return a dictionary containing key information
93
+ key_avai = await check_key_ant_availability(key, claude_model)
94
  info_dict = {#"account_name": "",
95
  "key_type": "Anthropic Claude",
96
  "key_availability": key_avai[0],
 
108
  info_dict["tier"] = key_avai[7]
109
 
110
  if rate_limit:
111
+ rate = await check_ant_rate_limit(key, claude_model)
112
  info_dict["concurrent_rate_limit"] = rate
113
 
114
  return info_dict
 
295
  GCP format: PROJECT_ID:CLIENT_EMAIL:PRIVATE_KEY (including \\n)
296
  | or refresh token: PROJECT_ID:CLIENT_ID:CLIENT_SECRET:REFRESH_TOKEN
297
  ''')
298
+ claude_options = [
299
+ 'claude-3-haiku-20240307',
300
+ 'claude-3-sonnet-20240229',
301
+ 'claude-3-opus-20240229',
302
+ 'claude-3-5-sonnet-20240620',
303
+ ]
304
  with gr.Row():
305
  with gr.Column():
306
  key = gr.Textbox(lines=1, max_lines=5, label="API Key")
307
+ claude_model = gr.Dropdown(claude_options, value="claude-3-haiku-20240307", label="Claude API model", info="model for filter_response and concurrent check")
308
+ rate_limit = gr.Checkbox(label="Check concurrent rate limit (API Claude, experimental)")
309
  with gr.Row():
310
  clear_button = gr.Button("Clear")
311
  submit_button = gr.Button("Submit", variant="primary")
 
313
  info = gr.JSON(label="API Key Information")
314
 
315
  clear_button.click(fn=clear_inputs, inputs=[key], outputs=[key])
316
+ submit_button.click(fn=sort_key, inputs=[key, rate_limit, claude_model], outputs=[info], api_name="sort_key")
317
+ demo.launch()