Spaces:
Sleeping
Sleeping
File size: 6,020 Bytes
5e509b3 86b66ac 57d2857 86b66ac 1324f5f 86b66ac 8d38e56 57d2857 8d38e56 86b66ac 57d2857 86b66ac bf10376 57d2857 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac bf10376 86b66ac 57d2857 86b66ac 57d2857 |
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 |
from fastapi import FastAPI, File, Form, UploadFile, Body
from fastapi.responses import JSONResponse, Response
from concrete.ml.deployment import FHEModelServer
import numpy as np
from pydantic import BaseModel
from concrete.ml.deployment import FHEModelClient
import subprocess
from pathlib import Path
from utils import (
CLIENT_DIR,
CURRENT_DIR,
DEPLOYMENT_DIR,
SERVER_DIR,
INPUT_BROWSER_LIMIT,
KEYS_DIR,
SERVER_URL,
TARGET_COLUMNS,
TRAINING_FILENAME,
clean_directory,
get_disease_name,
load_data,
pretty_print,
)
import time
from typing import List
# Load the FHE server
# FHE_SERVER = FHEModelServer(DEPLOYMENT_DIR)
class Symptoms(BaseModel):
user_symptoms: List[str]
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
def root():
"""
Root endpoint of the health prediction API.
Returns:
dict: The welcome message.
"""
return {"message": "Welcome to your disease prediction with FHE!"}
@app.post("/send_input")
def send_input(
user_id: str = Form(),
files: List[UploadFile] = File(),
):
"""Send the inputs to the server."""
print("\nSend the data to the server ............\n")
# Receive the Client's files (Evaluation key + Encrypted symptoms)
evaluation_key_path = SERVER_DIR / f"{user_id}_valuation_key"
encrypted_input_path = SERVER_DIR / f"{user_id}_encrypted_input"
# Save the files using the above paths
with encrypted_input_path.open("wb") as encrypted_input, evaluation_key_path.open(
"wb"
) as evaluation_key:
encrypted_input.write(files[0].file.read())
evaluation_key.write(files[1].file.read())
@app.post("/run_fhe")
def run_fhe(
user_id: str = Form(),
):
"""Inference in FHE."""
print("\nRun in FHE in the server ............\n")
evaluation_key_path = SERVER_DIR / f"{user_id}_valuation_key"
encrypted_input_path = SERVER_DIR / f"{user_id}_encrypted_input"
# Read the files (Evaluation key + Encrypted symptoms) using the above paths
with encrypted_input_path.open("rb") as encrypted_output_file, evaluation_key_path.open(
"rb"
) as evaluation_key_file:
encrypted_output = encrypted_output_file.read()
evaluation_key = evaluation_key_file.read()
# Run the FHE execution
start = time.time()
encrypted_output = FHE_SERVER.run(encrypted_output, evaluation_key)
assert isinstance(encrypted_output, bytes)
fhe_execution_time = round(time.time() - start, 2)
# Retrieve the encrypted output path
encrypted_output_path = SERVER_DIR / f"{user_id}_encrypted_output"
# Write the file using the above path
with encrypted_output_path.open("wb") as f:
f.write(encrypted_output)
return JSONResponse(content=fhe_execution_time)
@app.post("/get_output")
def get_output(user_id: str = Form()):
"""Retrieve the encrypted output from the server."""
print("\nGet the output from the server ............\n")
# Path where the encrypted output is saved
encrypted_output_path = SERVER_DIR / f"{user_id}_encrypted_output"
# Read the file using the above path
with encrypted_output_path.open("rb") as f:
encrypted_output = f.read()
time.sleep(1)
# Send the encrypted output
return Response(encrypted_output)
@app.post("/generate_keys")
def generate_keys(symptoms: Symptoms):
"""
Endpoint pour générer des clés basées sur les symptômes de l'utilisateur.
Args:
symptoms (Symptoms): Les symptômes de l'utilisateur.
Returns:
JSONResponse: Réponse contenant les clés générées et l'ID utilisateur.
"""
# Appel de la fonction de nettoyage
clean_directory()
# Vérification si la liste des symptômes est vide
if not symptoms.user_symptoms:
return JSONResponse(
status_code=400, content={"error": "Veuillez soumettre vos symptômes en premier."}
)
# Génération d'un ID utilisateur aléatoire
user_id = np.random.randint(0, 2**32)
print(f"Votre ID utilisateur est : {user_id}....")
client = FHEModelClient(path_dir=DEPLOYMENT_DIR, key_dir=KEYS_DIR / f"{user_id}")
client.load()
# Création des clés privées et d'évaluation côté client
client.generate_private_and_evaluation_keys()
# Récupération des clés d'évaluation sérialisées
serialized_evaluation_keys = client.get_serialized_evaluation_keys()
assert isinstance(serialized_evaluation_keys, bytes)
# Sauvegarde de la clé d'évaluation
evaluation_key_path = KEYS_DIR / f"{user_id}/evaluation_key"
with evaluation_key_path.open("wb") as f:
f.write(serialized_evaluation_keys)
serialized_evaluation_keys_shorten_hex = serialized_evaluation_keys.hex()[:INPUT_BROWSER_LIMIT]
return JSONResponse(
content={
"user_id": user_id,
"evaluation_key": serialized_evaluation_keys_shorten_hex,
"evaluation_key_size": f"{len(serialized_evaluation_keys) / (10**6):.2f} MB"
}
)
@app.post("/run_dev")
def run_dev_script():
"""
Endpoint to execute the dev.py script to generate deployment files.
Returns:
JSONResponse: Success message or error details.
"""
try:
# Define the path to dev.py
dev_script_path = Path(__file__).parent / "dev.py"
# Execute the dev.py script
result = subprocess.run(
["python", str(dev_script_path)],
capture_output=True,
text=True,
check=True
)
# Return success message with output
return JSONResponse(
content={"message": "dev.py executed successfully!", "output": result.stdout}
)
except subprocess.CalledProcessError as e:
# Return error message in case of failure
return JSONResponse(
status_code=500,
content={"error": "Failed to execute dev.py", "details": e.stderr}
)
|