Skip to content

Commit

Permalink
test: Gemini 3rd
Browse files Browse the repository at this point in the history
  • Loading branch information
gensart-ai committed Feb 18, 2024
1 parent 828a98c commit b200e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/external/gemini.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const geminiTextOnly: Executor = async (client, message) => {
}
} catch (error) {
// wweb.replyMessage(message, 'Maaf, terjadi kesalahan saat menjawab pertanyaan anda. Silahkan coba lagi');
wweb.replyMessage(message, (error as Error).message + ' at ' + (error as AxiosError).stack);
wweb.replyMessage(message, (error as Error).message + ' at ' + (error as AxiosError).response?.data as string);
}
}

Expand Down

0 comments on commit b200e98

Please sign in to comment.