seawolf2357 commited on
Commit
53c5654
ยท
verified ยท
1 Parent(s): 21e0783

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -18
app.py CHANGED
@@ -36,6 +36,9 @@ SPECIFIC_CHANNEL_ID = int(os.getenv("DISCORD_CHANNEL_ID"))
36
  conversation_history = []
37
 
38
  def latex_to_image(latex_string):
 
 
 
39
  plt.figure(figsize=(10, 1))
40
  plt.axis('off')
41
  plt.text(0.5, 0.5, f'${latex_string}$', size=20, ha='center', va='center')
@@ -50,12 +53,18 @@ def latex_to_image(latex_string):
50
  return image_base64
51
 
52
  def process_and_convert_latex(text):
53
- latex_pattern = r'\$(.*?)\$'
 
54
  matches = re.findall(latex_pattern, text)
55
 
56
- for match in matches:
57
- image_base64 = latex_to_image(match)
58
- text = text.replace(f'${match}$', f'<latex_image:{image_base64}>')
 
 
 
 
 
59
 
60
  return text
61
 
@@ -149,20 +158,21 @@ class MyClient(discord.Client):
149
  return f"{user_mention}, {full_response}"
150
 
151
  async def send_message_with_latex(self, channel, message):
152
- # ํ…์ŠคํŠธ์™€ LaTeX ์ˆ˜์‹ ๋ถ„๋ฆฌ
153
- processed_message = process_and_convert_latex(message)
154
- parts = processed_message.split('<latex_image:')
155
-
156
- for part in parts:
157
- if part.startswith('data:image'):
158
- # LaTeX ์ด๋ฏธ์ง€ ๋ถ€๋ถ„
159
- image_data = part.split('>')[0]
160
- image_binary = base64.b64decode(image_data)
161
- await channel.send(file=discord.File(BytesIO(image_binary), 'equation.png'))
162
- else:
163
- # ํ…์ŠคํŠธ ๋ถ€๋ถ„
164
- if part.strip():
165
- await self.send_long_message(channel, part)
 
166
 
167
  async def send_long_message(self, channel, message):
168
  if len(message) <= 2000:
 
36
  conversation_history = []
37
 
38
  def latex_to_image(latex_string):
39
+ # $$ ๊ธฐํ˜ธ ์ œ๊ฑฐ
40
+ latex_string = latex_string.strip('$')
41
+
42
  plt.figure(figsize=(10, 1))
43
  plt.axis('off')
44
  plt.text(0.5, 0.5, f'${latex_string}$', size=20, ha='center', va='center')
 
53
  return image_base64
54
 
55
  def process_and_convert_latex(text):
56
+ # ๋‹จ์ผ $ ๋˜๋Š” ์ด์ค‘ $$ ๋กœ ๋‘˜๋Ÿฌ์‹ธ์ธ LaTeX ์ˆ˜์‹์„ ์ฐพ์Šต๋‹ˆ๋‹ค.
57
+ latex_pattern = r'\$\$(.*?)\$\$|\$(.*?)\$'
58
  matches = re.findall(latex_pattern, text)
59
 
60
+ for double_match, single_match in matches:
61
+ match = double_match or single_match
62
+ if match:
63
+ image_base64 = latex_to_image(match)
64
+ if double_match:
65
+ text = text.replace(f'$${match}$$', f'<latex_image:{image_base64}>')
66
+ else:
67
+ text = text.replace(f'${match}$', f'<latex_image:{image_base64}>')
68
 
69
  return text
70
 
 
158
  return f"{user_mention}, {full_response}"
159
 
160
  async def send_message_with_latex(self, channel, message):
161
+ try:
162
+ processed_message = process_and_convert_latex(message)
163
+ parts = processed_message.split('<latex_image:')
164
+
165
+ for part in parts:
166
+ if part.startswith('data:image'):
167
+ image_data = part.split('>')[0]
168
+ image_binary = base64.b64decode(image_data)
169
+ await channel.send(file=discord.File(BytesIO(image_binary), 'equation.png'))
170
+ else:
171
+ if part.strip():
172
+ await self.send_long_message(channel, part)
173
+ except Exception as e:
174
+ logging.error(f"Error in send_message_with_latex: {str(e)}")
175
+ await channel.send("An error occurred while processing the message.")
176
 
177
  async def send_long_message(self, channel, message):
178
  if len(message) <= 2000: