seawolf2357 commited on
Commit
b8f450e
ยท
verified ยท
1 Parent(s): 9a35c66

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -23
app.py CHANGED
@@ -1,31 +1,36 @@
1
- import gradio as gr
2
  import requests
 
3
  import base64
4
 
 
 
 
 
 
5
 
6
- # Mathpix ์š”์ฒญ์„ ์œ„ํ•œ ํ•จ์ˆ˜
7
- def process_image_to_latex(file_path):
8
  headers = {
9
- "app_id": "arxivgpt_2c0986",
10
- "app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
11
- "Content-type": "application/json"
12
  }
13
- with open(file_path, "rb") as file:
14
- img_data = file.read()
15
- response = requests.post(
16
- "https://api.mathpix.com/v3/latex",
17
- headers=headers,
18
- json={"src": "data:image/jpeg;base64," + base64.b64encode(img_data).decode()}
19
- )
20
- return response.json()["latex"]
21
 
22
- # Gradio ์ธํ„ฐํŽ˜์ด์Šค ๊ตฌ์„ฑ
23
- def create_gradio_interface():
24
- with gr.Blocks() as demo:
25
- gr.Markdown("## LaTeX ์ถ”์ถœ๊ธฐ")
26
- file_input = gr.File(label="์ด๋ฏธ์ง€ ๋˜๋Š” PDF ํŒŒ์ผ ์—…๋กœ๋“œ")
27
- latex_output = gr.Textbox(label="์ถ”์ถœ๋œ LaTeX")
28
- file_input.change(fn=process_image_to_latex, inputs=[file_input], outputs=[latex_output])
29
- demo.launch()
 
 
 
 
 
 
 
30
 
31
- create_gradio_interface()
 
 
 
 
1
  import requests
2
+ import json
3
  import base64
4
 
5
+ # Mathpix์— ์ด๋ฏธ์ง€ ํŒŒ์ผ์„ ๋ณด๋‚ด์–ด LaTeX ๋ฌธ์ž์—ด์„ ์ถ”์ถœํ•˜๋Š” ํ•จ์ˆ˜
6
+ def get_latex_from_image(image_path):
7
+ # ์ด๋ฏธ์ง€ ํŒŒ์ผ์„ base64 ์ธ์ฝ”๋”ฉ
8
+ with open(image_path, "rb") as f:
9
+ image_base64 = base64.b64encode(f.read()).decode()
10
 
11
+ # Mathpix API ์š”์ฒญ ํ—ค๋”
 
12
  headers = {
13
+ "app_id": "arxivgpt_2c0986", # ์—ฌ๊ธฐ์— Mathpix ID๋ฅผ ์ž…๋ ฅ
14
+ "app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5", # ์—ฌ๊ธฐ์— Mathpix API ํ‚ค๋ฅผ ์ž…๋ ฅ
15
+ "Content-Type": "application/json"
16
  }
 
 
 
 
 
 
 
 
17
 
18
+ # Mathpix API ์š”์ฒญ ๋ฐ”๋””
19
+ data = {
20
+ "src": "data:image/png;base64," + image_base64,
21
+ "formats": ["latex_normal"]
22
+ }
23
+
24
+ # Mathpix API ์š”์ฒญ ๋ณด๋‚ด๊ธฐ
25
+ response = requests.post("https://api.mathpix.com/v3/latex", headers=headers, data=json.dumps(data))
26
+ response.raise_for_status() # ์š”์ฒญ ์‹คํŒจ ์‹œ ์˜ˆ์™ธ ๋ฐœ์ƒ
27
+
28
+ # ์‘๋‹ต์—์„œ LaTeX ์ถ”์ถœ
29
+ result = response.json()
30
+ latex = result['latex_normal']
31
+
32
+ return latex
33
 
34
+ # ์ถ”์ถœํ•œ LaTeX ์ถœ๋ ฅ
35
+ latex_string = get_latex_from_image("path/to/image.png")
36
+ print(latex_string)