seawolf2357 commited on
Commit
112423f
ยท
verified ยท
1 Parent(s): b8f450e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -12
app.py CHANGED
@@ -1,36 +1,49 @@
 
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)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
  import requests
3
  import json
4
  import base64
5
 
6
  # Mathpix์— ์ด๋ฏธ์ง€ ํŒŒ์ผ์„ ๋ณด๋‚ด์–ด LaTeX ๋ฌธ์ž์—ด์„ ์ถ”์ถœํ•˜๋Š” ํ•จ์ˆ˜
7
+ def get_latex_from_image(image):
8
+ image_base64 = base64.b64encode(image).decode('utf-8')
 
 
9
 
10
  # Mathpix API ์š”์ฒญ ํ—ค๋”
11
  headers = {
12
+ "app_id": "arxivgpt_2c0986",
13
+ "app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
14
  "Content-Type": "application/json"
15
  }
16
 
17
  # Mathpix API ์š”์ฒญ ๋ฐ”๋””
18
  data = {
19
+ "src": f"data:image/jpeg;base64,{image_base64}",
20
  "formats": ["latex_normal"]
21
  }
22
 
23
  # Mathpix API ์š”์ฒญ ๋ณด๋‚ด๊ธฐ
24
+ response = requests.post("https://api.mathpix.com/v3/latex", headers=headers, json=data)
25
  response.raise_for_status() # ์š”์ฒญ ์‹คํŒจ ์‹œ ์˜ˆ์™ธ ๋ฐœ์ƒ
26
 
27
  # ์‘๋‹ต์—์„œ LaTeX ์ถ”์ถœ
28
  result = response.json()
29
+ latex = result.get('latex_normal', "LaTeX ์ถ”์ถœ ์‹คํŒจ")
30
 
31
  return latex
32
 
33
+ # Gradio ์•ฑ ์ •์˜
34
+ def build_gradio_app():
35
+ with gr.Blocks() as app:
36
+ gr.Markdown("์ด๋ฏธ์ง€์—์„œ LaTeX ๋ฌธ์ž์—ด ์ถ”์ถœํ•˜๊ธฐ")
37
+ with gr.Form():
38
+ image_input = gr.Image(type="pil", label="์ด๋ฏธ์ง€ ์—…๋กœ๋“œ")
39
+ submit_button = gr.Button("๋ณ€ํ™˜ํ•˜๊ธฐ")
40
+ latex_output = gr.Textbox(label="์ถ”์ถœ๋œ LaTeX")
41
+
42
+ image_input.change(fn=get_latex_from_image, inputs=image_input, outputs=latex_output)
43
+
44
+ return app
45
+
46
+ # Gradio ์•ฑ ์‹คํ–‰
47
+ if __name__ == "__main__":
48
+ app = build_gradio_app()
49
+ app.launch()