mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
refac
This commit is contained in:
parent
12a04b118f
commit
f43b545bdd
2 changed files with 7 additions and 1 deletions
|
|
@ -37,6 +37,8 @@
|
|||
codeEditor.dispatch({
|
||||
changes: [{ from: 0, to: codeEditor.state.doc.length, insert: formattedCode }]
|
||||
});
|
||||
|
||||
toast.success('Code formatted successfully');
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -59,13 +61,15 @@
|
|||
];
|
||||
|
||||
onMount(() => {
|
||||
value = boilerplate;
|
||||
|
||||
// Check if html class has dark mode
|
||||
isDarkMode = document.documentElement.classList.contains('dark');
|
||||
|
||||
// python code editor, highlight python code
|
||||
codeEditor = new EditorView({
|
||||
state: EditorState.create({
|
||||
doc: boilerplate,
|
||||
doc: value,
|
||||
extensions: extensions
|
||||
}),
|
||||
parent: document.getElementById('code-textarea')
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
from datetime import datetime
|
||||
import requests
|
||||
|
||||
|
||||
class Tools:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
|
@ -40,6 +41,7 @@ class Tools:
|
|||
except Exception as e:
|
||||
print(e)
|
||||
return "Invalid equation"
|
||||
|
||||
`;
|
||||
</script>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue