What is the difference between using "Google Gemini Transcribe audio" node and doing HTTP request to Google Gemini API to use generativelanguage/apiv1

I was wondering whatthe difference is between using "Google Gemini Transcribe audio" node and doing HTTP request to Google Gemini API to use  generativelanguage/apiv1

The Google Gemini Transcribe a recording node is not working when I get an audio file from telegram, but I've seen workarounds where people make use of a http request to a generativelanguage/apiv1 (which is still in beta)

Hi @enesk50,

If you scratch through the source code of the node, you will find the answer. I believe it is the same api calls you are trying to compare. The url the node uses can be found below:

`let url = https://generativelanguage.googleapis.com$``{endpoint};`

Specifically, the nodes use the /v1beta endpoints:

Hope this answers your question

1 Like