Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
|
|
|
54 |
matches = re.findall(latex_pattern, text)
|
55 |
|
56 |
-
for
|
57 |
-
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
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 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
|
|
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:
|