FlutterFlow University
FlutterFlow University
  • Видео 2
  • Просмотров 830
How to Record and Transcribe Audio with OpenAI Whisper in Groq Cloud
In this video, we’re going to see how to build this audio transcription feature for your chat applications using Groq and FlutterFlow. It would mean a lot if you guys subscribed and shared this video with your developer friends. Now, let’s jump into it.
I have created a Chat page with a Container at the bottom that holds two buttons: one that starts the voice recording, and the other that stops it. The transcribed text should then show in this text field.
I decided to use Groq since it’s one of the fastest and cheapest providers of the Whisper model from OpenAI that does Speech-to-Text. Go ahead and create an account in Groq Cloud and generate an API key which will be needed to talk to thei...
Просмотров: 30

Видео

How to Refresh Supabase Tokens when using Custom Authentication with FlutterFlow
Просмотров 8046 месяцев назад
The Supabase integration in FlutterFlow is still lacking features. I have mostly used phone authentication in my projects and this has forced me to use the Custom Authentication option in FlutterFlow. With Supabase GoTrue service, authentication with a phone number is pretty easy to implement, but be careful when you do so to not forget refreshing the tokens. When successfully logging-in, Supab...

Комментарии

  • @sitawk81
    @sitawk81 3 месяца назад

    Hi, thank you for the video, authManager is unknown to flutter flow even when you import the package '../../auth/custom_auth/auth_util.dart'.

    • @learnfflow
      @learnfflow 3 месяца назад

      Hey there, first, I assume you are using Custom Authentication. I would say just ignore the error if you are reading it from the custom editor of FlutterFlow. Can you try and run it in Test Mode or on device?

    • @sitawk81
      @sitawk81 3 месяца назад

      @@learnfflow Thank you for your quick reply. As you recommended I excluded the code from compilation, yet, I receive the following error when the action tries to update the auth user data. currentUser?.loggedIn ?? false "User must be logged in to update auth user data." I even to sign in with authManager.signin but it did not help.