|
@@ -187,22 +187,14 @@
|
|
|
}
|
|
|
}
|
|
|
async function handleSubmit() {
|
|
|
- await checkQuotaApi().then((res) => {
|
|
|
- if (res.code !== 200) {
|
|
|
- return;
|
|
|
- }
|
|
|
- });
|
|
|
+ await checkQuotaApi();
|
|
|
let message = prompt.value;
|
|
|
if (!message || message.trim() === '') return;
|
|
|
prompt.value = '';
|
|
|
onConversation(message);
|
|
|
}
|
|
|
const handleOutQuestion = async (message) => {
|
|
|
- await checkQuotaApi().then((res) => {
|
|
|
- if (res.code !== 200) {
|
|
|
- return;
|
|
|
- }
|
|
|
- });
|
|
|
+ await checkQuotaApi();
|
|
|
onConversation(message);
|
|
|
};
|
|
|
async function onConversation(message) {
|