Spaces:
Running
Running
Update app.py
Browse files
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(
|
7 |
-
|
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",
|
14 |
-
"app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
|
15 |
"Content-Type": "application/json"
|
16 |
}
|
17 |
|
18 |
# Mathpix API ์์ฒญ ๋ฐ๋
|
19 |
data = {
|
20 |
-
"src": "data:image/
|
21 |
"formats": ["latex_normal"]
|
22 |
}
|
23 |
|
24 |
# Mathpix API ์์ฒญ ๋ณด๋ด๊ธฐ
|
25 |
-
response = requests.post("https://api.mathpix.com/v3/latex", headers=headers,
|
26 |
response.raise_for_status() # ์์ฒญ ์คํจ ์ ์์ธ ๋ฐ์
|
27 |
|
28 |
# ์๋ต์์ LaTeX ์ถ์ถ
|
29 |
result = response.json()
|
30 |
-
latex = result
|
31 |
|
32 |
return latex
|
33 |
|
34 |
-
#
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|