Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3,23 +3,18 @@ import requests
|
|
3 |
import json
|
4 |
import base64
|
5 |
|
6 |
-
|
7 |
-
def get_latex_from_image_all_formats(
|
8 |
-
|
9 |
-
with open(image_path, "rb") as image_file:
|
10 |
-
image_bytes = image_file.read()
|
11 |
-
|
12 |
-
# ์ด๋ฏธ์ง ํ์ผ์ base64 ์ธ์ฝ๋ฉ
|
13 |
-
image_base64 = base64.b64encode(image_bytes).decode('utf-8')
|
14 |
|
15 |
# Mathpix API ์์ฒญ ํค๋
|
16 |
headers = {
|
17 |
-
"app_id": "arxivgpt_2c0986",
|
18 |
-
"app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
|
19 |
"Content-Type": "application/json"
|
20 |
}
|
21 |
|
22 |
-
#
|
23 |
data = {
|
24 |
"src": f"data:image/jpeg;base64,{image_base64}",
|
25 |
"formats": ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]
|
@@ -27,29 +22,23 @@ def get_latex_from_image_all_formats(image_path):
|
|
27 |
|
28 |
# Mathpix API ์์ฒญ ๋ณด๋ด๊ธฐ
|
29 |
response = requests.post("https://api.mathpix.com/v3/latex", headers=headers, json=data)
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
response.raise_for_status()
|
34 |
-
except requests.HTTPError as e:
|
35 |
-
return {"error": f"Mathpix API ์์ฒญ ์คํจ: {e}"}
|
36 |
-
|
37 |
-
# ๊ฐ ํฌ๋งท์ ๋ฐ๋ฅธ ๊ฒฐ๊ณผ๋ฅผ ์ ์ฅํ๋ ๋์
๋๋ฆฌ
|
38 |
result = response.json()
|
39 |
-
|
40 |
|
41 |
-
return
|
42 |
|
43 |
# Gradio ์ฑ ์ ์
|
44 |
def build_gradio_app():
|
45 |
with gr.Blocks() as app:
|
46 |
with gr.Row():
|
47 |
-
image_input = gr.Image(type="
|
48 |
submit_button = gr.Button("๋ณํํ๊ธฐ")
|
49 |
-
outputs = {
|
50 |
|
51 |
-
|
52 |
-
submit_button.click(fn=get_latex_from_image_all_formats, inputs=image_input, outputs=outputs)
|
53 |
|
54 |
return app
|
55 |
|
@@ -57,4 +46,3 @@ def build_gradio_app():
|
|
57 |
if __name__ == "__main__":
|
58 |
app = build_gradio_app()
|
59 |
app.launch()
|
60 |
-
|
|
|
3 |
import json
|
4 |
import base64
|
5 |
|
6 |
+
# Mathpix์ ์ด๋ฏธ์ง ํ์ผ์ ๋ณด๋ด์ด ์ฌ๋ฌ ํฌ๋งท์ LaTeX ๋ฌธ์์ด์ ์ถ์ถํ๋ ํจ์
|
7 |
+
def get_latex_from_image_all_formats(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": ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]
|
|
|
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 |
+
formats_results = {f: result.get(f, "์ถ์ถ ์คํจ") for f in data["formats"]}
|
30 |
|
31 |
+
return formats_results
|
32 |
|
33 |
# Gradio ์ฑ ์ ์
|
34 |
def build_gradio_app():
|
35 |
with gr.Blocks() as app:
|
36 |
with gr.Row():
|
37 |
+
image_input = gr.Image(type="file", label="์ด๋ฏธ์ง ์
๋ก๋")
|
38 |
submit_button = gr.Button("๋ณํํ๊ธฐ")
|
39 |
+
outputs = {f: gr.Textbox(label=f"{f} ๊ฒฐ๊ณผ") for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]}
|
40 |
|
41 |
+
submit_button.click(fn=get_latex_from_image_all_formats, inputs=[image_input], outputs=outputs)
|
|
|
42 |
|
43 |
return app
|
44 |
|
|
|
46 |
if __name__ == "__main__":
|
47 |
app = build_gradio_app()
|
48 |
app.launch()
|
|