Rooni commited on
Commit
4cbb89e
·
verified ·
1 Parent(s): 45f4da3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -27
app.py CHANGED
@@ -5,46 +5,54 @@ from PIL import Image
5
  from io import BytesIO
6
  import base64
7
  import requests
8
- import numpy as np
9
 
10
- # ... (остальной код без изменений)
 
 
 
 
 
 
 
11
 
12
  def swap_face_api(source_img, target_img, doFaceEnhancer):
13
  try:
14
  api_key = get_random_api_key()
15
  api_url = "https://tuan2308-face-swap-predict.hf.space/api/predict/"
16
 
17
- # Преобразовазуем numpy массивы в PIL изображения, затем в байты и base64
18
- source_pil = Image.fromarray(source_img)
19
  source_bytes = BytesIO()
20
- source_pil.save(source_bytes, format="JPEG")
21
- source_b64 = base64.b64encode(source_bytes.getvalue()).decode("utf-8")
22
-
23
 
24
- target_pil = Image.fromarray(target_img)
25
  target_bytes = BytesIO()
26
- target_pil.save(target_bytes, format="JPEG")
27
- target_b64 = base64.b64encode(target_bytes.getvalue()).decode("utf-8")
28
 
 
29
  payload = {
30
- "data": [
31
- source_b64,
32
- target_b64,
33
- doFaceEnhancer
34
- ],
35
- "api_key": api_key
36
  }
37
 
38
- response = requests.post(api_url, json=payload)
 
 
 
 
 
 
 
39
  response.raise_for_status()
40
 
41
- print(response)
42
-
43
  result = response.json()
44
- result_data = result["data"][0] # Проверьте индекс
45
- result_decoded = base64.b64decode(result_data)
46
- output_image = Image.open(BytesIO(result_decoded))
47
 
 
 
48
  return output_image
49
 
50
  except requests.exceptions.RequestException as e:
@@ -54,17 +62,17 @@ def swap_face_api(source_img, target_img, doFaceEnhancer):
54
  print(f"Ошибка: {e}")
55
  return None
56
 
57
-
58
  iface = gr.Interface(
59
  fn=swap_face_api,
60
  inputs=[
61
- gr.Image(type="numpy", label="Source Image"), # Изменено на numpy
62
- gr.Image(type="numpy", label="Target Image"), # Изменено на numpy
63
  gr.Checkbox(label="Face Enhancer?")
64
  ],
65
- outputs=gr.Image(type="pil", label="Output Image"), # Остается pil
66
  title="Face Swap via API"
67
  )
68
 
69
- iface.launch(server_name="0.0.0.0", server_port=7860)
70
 
 
5
  from io import BytesIO
6
  import base64
7
  import requests
 
8
 
9
+ # Получаем ключи API из секретной переменной
10
+ KEYS = os.getenv("KEYS", "").split(",")
11
+
12
+ # Создаем функцию для получения случайного ключа API
13
+ def get_random_api_key():
14
+ if not KEYS:
15
+ raise ValueError("KEYS environment variable is not set or empty.")
16
+ return random.choice(KEYS)
17
 
18
  def swap_face_api(source_img, target_img, doFaceEnhancer):
19
  try:
20
  api_key = get_random_api_key()
21
  api_url = "https://tuan2308-face-swap-predict.hf.space/api/predict/"
22
 
23
+ # Преобразуем изображения в base64
 
24
  source_bytes = BytesIO()
25
+ source_img.save(source_bytes, format="JPEG")
26
+ source_b64 = source_bytes.getvalue()
 
27
 
 
28
  target_bytes = BytesIO()
29
+ target_img.save(target_bytes, format="JPEG")
30
+ target_b64 = target_bytes.getvalue()
31
 
32
+ # Создаем полезные данные для POST-запроса
33
  payload = {
34
+ "source_file": ("source.jpg", source_b64, "image/jpeg"),
35
+ "target_file": ("target.jpg", target_b64, "image/jpeg"),
36
+ "doFaceEnhancer": doFaceEnhancer
 
 
 
37
  }
38
 
39
+ # Создаем заголовки с API ключом
40
+ headers = {
41
+ "Content-Type": "multipart/form-data",
42
+ "Authorization": f"Bearer {api_key}"
43
+ }
44
+
45
+ # Отправляем POST-запрос
46
+ response = requests.post(api_url, files=payload)
47
  response.raise_for_status()
48
 
49
+ # Получаем результат
 
50
  result = response.json()
51
+ result_data = result["data"][0] # Убедитесь, что индекс корректный
52
+ result_b64 = base64.b64decode(result_data)
 
53
 
54
+ # Преобразуем результат в изображение PIL
55
+ output_image = Image.open(BytesIO(result_b64))
56
  return output_image
57
 
58
  except requests.exceptions.RequestException as e:
 
62
  print(f"Ошибка: {e}")
63
  return None
64
 
65
+ # Создаем интерфейс Gradio
66
  iface = gr.Interface(
67
  fn=swap_face_api,
68
  inputs=[
69
+ gr.Image(type="pil", label="Source Image"),
70
+ gr.Image(type="pil", label="Target Image"),
71
  gr.Checkbox(label="Face Enhancer?")
72
  ],
73
+ outputs=gr.Image(type="pil", label="Output Image"),
74
  title="Face Swap via API"
75
  )
76
 
77
+ iface.launch(server_name="0.0.0.0", server_port=7860) # Запускаем на всех интерфейсах
78