seawolf2357 commited on
Commit
015da21
·
verified ·
1 Parent(s): 0e89256

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -5,6 +5,10 @@ import base64
5
  from PIL import Image
6
  import io
7
 
 
 
 
 
8
  # Mathpix에 이미지 파일을 보내어 여러 포맷의 LaTeX 문자열을 추출하는 함수
9
  def get_latex_from_image_all_formats(image):
10
  # PIL 이미지를 바이트로 변환
@@ -14,8 +18,8 @@ def get_latex_from_image_all_formats(image):
14
 
15
  # Mathpix API 요청 헤더
16
  headers = {
17
- "app_id": "arxivgpt_2c0986",
18
- "app_key": "b5c14c78ea645a6d673195e6360a1cc33ef2bab7a79b90f7cebf6465177171f5",
19
  "Content-Type": "application/json"
20
  }
21
 
@@ -44,7 +48,8 @@ def build_gradio_app():
44
 
45
  outputs = [gr.Textbox(label=f"{f} 결과") for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
46
 
47
- latex_iframe = gr.HTML(value='<iframe src="https://latex.js.org/playground.html" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 8px;"></iframe>', elem_id="latex_iframe")
 
48
 
49
  def process_and_output(image):
50
  latex_result = get_latex_from_image_all_formats(image) # 변수명 수정
 
5
  from PIL import Image
6
  import io
7
 
8
+ app_id = os.getenv("app_id")
9
+ app_key = os.getenv("app_key")
10
+ app_url = os.getenv("app_url")
11
+
12
  # Mathpix에 이미지 파일을 보내어 여러 포맷의 LaTeX 문자열을 추출하는 함수
13
  def get_latex_from_image_all_formats(image):
14
  # PIL 이미지를 바이트로 변환
 
18
 
19
  # Mathpix API 요청 헤더
20
  headers = {
21
+ "app_id": app_id,
22
+ "app_key": app_key,
23
  "Content-Type": "application/json"
24
  }
25
 
 
48
 
49
  outputs = [gr.Textbox(label=f"{f} 결과") for f in ["text", "latex_styled", "latex_normal", "latex_list", "latex_simplified", "asciimath", "mathml"]]
50
 
51
+ latex_iframe = gr.HTML(value='<iframe src="https://www.mathjax.org/#demo" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 8px;"></iframe>', elem_id="latex_iframe")
52
+
53
 
54
  def process_and_output(image):
55
  latex_result = get_latex_from_image_all_formats(image) # 변수명 수정