Skip to main content

๐Ÿ•น๏ธ Custom actions

This template includes many custom actions that gives you more control in your app. These actions are fully commented to help understand how they work and modify them if needed, here are the most important ones:

1. startTextRecordingโ€‹

This action starts the process of recording the user's speech and converting it into text. It uses a custom speech-to-text package to listen to the userโ€™s input.

  • How it works:
    • When triggered, the app begins recording audio from the user.
    • The speech is then converted into text using the speech-to-text package.

2. stopTextRecordingโ€‹

This action stops the speech-to-text recording and processes the text from the userโ€™s speech.

  • How it works:
    • When triggered, the app stops recording audio.
    • It then processes the recorded audio and converts it into text.

3. fetchSpeechAndPlayWebโ€‹

This action sends the text response (from OpenAIโ€™s API) to a text-to-speech service and plays the generated voice back to the user.

  • How it works:
    • It sends the generated text to a text-to-speech API.
    • The app then plays the audio response generated from the text.

4. DisplayWordsOneByOneโ€‹

This action displays the answer text word by word, similar to ChatGPTโ€™s response style.

5. CreateStripeCustomerโ€‹

This action creates a Stripe customer based on the logged-in userโ€™s email.


Customization
  • Modifying Actions: All actions are commented line by line. You can easily change them based on your specific needs (e.g., changing the API key, altering the recording duration, etc.).
  • Adding New Features: If you need to add more functionality, simply update the code in these actions. FlutterFlow allows you to directly modify these actions and expand them as needed.
  • You also can adjust the audio tone to make it more cartoonish by applying pitch-shifting filters to the MP3 voice. For references, check out just_audio and FFmpeg.