import gradio as gr import os import requests import json def check_id_liveness(frame): url = "https://idlive.miniai.live/api/check_id_liveness" files = {'image': open(frame, 'rb')} try: r = requests.post(url=url, files=files) r.raise_for_status() return json.dumps(r.json(), indent=2) except requests.exceptions.RequestException as e: return str(e) # APP Interface with gr.Blocks() as MiniAIdemo: gr.Markdown( """

ID Document Liveness Detection SDK Demo



""" ) with gr.Tabs(): with gr.TabItem("ID Document Liveness Detection"): with gr.Row(): with gr.Column(): im_idlive_input = gr.Image(type='filepath', height=300) gr.Examples( [ os.path.join(os.path.dirname(__file__), "images/demo1.jpg"), ], inputs=im_idlive_input ) btn_f_idlive = gr.Button("Analysis Document", variant='primary') with gr.Column(): txt_idlive_output = gr.Textbox(label="API Response (JSON)") btn_f_idlive.click(check_id_liveness, inputs=im_idlive_input, outputs=txt_idlive_output) gr.HTML('') if __name__ == "__main__": MiniAIdemo.launch()