Computational Mama aka Ambika

computational_mama

Head of Developer Relations @ gooey.ai
20.5K runs
467 contributions since Jun 2023
Copilot (87), Bulk (64), Speech (58)

LLM

FUNCTIONS: Make a Haiku with ISS Coordinates

Loading...

11 runs

Added a function to check character count for twitter. You can fork the functions workflow and add ANY API!.

YOU CAN CHECK THE DETAILS SECTION AT THE BOTTOM OF THE PAGE TO SEE THE FUNCTION OUTPUT!

Prompt

write a haiku about alien and human friendships, incorporate the current latitude and longitude coordinates of ISS provided here: {{ coords_latitude }} {{coords_longitude}}
Functions

Log and return variables (Request Only)

Loading...

99 runs

LLM

FUNCTIONS: Make a poem with ISS Coordinates

Loading...

8 runs

Added a function to check character count for twitter. You can fork the functions workflow and add ANY API!.

YOU CAN CHECK THE DETAILS SECTION AT THE BOTTOM OF THE PAGE TO SEE THE FUNCTION OUTPUT!

Prompt

write a twitter friendly poem about alien and human friendships, incorporate the current latitude and longitude coordinates of ISS provided here: {{ coords_latitude }} {{coords_longitude}}
Functions

FETCH API: Where is ISS?

Loading...

66 runs

Fetch API for the location of the International Space Station

LLM

Gooey Bot Chat Analysis Script

Loading...

601 runs

Which language model works best your prompt? Compare your text generations across multiple large language models (LLMs) like OpenAI's evolving and latest ChatGPT engines and others like Curie, Ada, Babbage.

Prompt

{{messages}}

###

Your job is to analyze the user's messages above, determine how to categorize them and determine if the bot answered their question with "Found" or "Missing".

Category choices: [ "API Usage", "General Support Query", "Pricing & Credits", "Sales", "Others" ]

Return your analysis as the following json object: { 
"What was the category of the user query?": "<category>: <which tool>", 
"assistant": {"answer": "Found || Missing"}}}

If the messages doesn't fit into any of the categories, return an empty object (`{}`)
Functions

Log and return variables (Response Only)

Loading...

91 runs

Use this function to Log and return variables from any Gooey.AI workflow.

LLM

FUNCTIONS: char count for llm poems for twitter

Loading...

7 runs

Added a function to check character count for twitter. You can fork the functions workflow and add ANY API!.

YOU CAN CHECK THE DETAILS SECTION AT THE BOTTOM OF THE PAGE TO SEE THE FUNCTION OUTPUT!

Prompt

write a twitter friendly poem about robots and human friendships
Bulk

Bulk Runner - Bangla

Loading...

0 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗bengali_link.xlsx

Image Generator

Sci-Fi Movie Poster - AI Image Generator

Loading...

0 runs

Create multiple AI photos from one prompt using Stable Diffusion (1.5 -> 2.1, Open/Midjourney), DallE, and other models. Find out which AI Image generator works best for your text prompt on comparing OpenAI, Stability.AI etc.

To know more, head over to our AI IMAGE GENERATOR HELP GUIDE!

Innovate a movie poster for a film of a genre of your choosing, such as sci-fi, and give it a title, like ‘Space World’.

DALL·E 3 (OpenAI)

DALL·E 3 (OpenAI)

Download

Doc Search

Video to RAG in the Cloud

Loading...

0 runs

We've built the best Retrieval Augmented Generation (RAG) as-a-Service anywhere - now with page-level citations! Absorb tables, PDFs, docs, links, videos or audio clips and use our synthetic data maker to generate FAQs and structured data from noisy, unstructured files. Search 1000s of files with our incredibly fast, hybrid database (finding related concepts OR specific keywords). Summarize results with OpenAI, Gemini or any open-source LLM of your choice. And finally, make informed LLM and synthetic data decisions by evaluating with your own golden data sets.

Our benefits:

  1. Page level citations to PDFs.
  2. We understand tables and dirty PDFs!
  3. No-code UX with full API support.
  4. Use any LLM model + your own scripts to create synthetic data.
  5. Support for Google docs, sheets, etc + PDF, doc, docx, txt, links, ppt, sheets, xls, wav, mp3, mp4 and mov
  6. Links to live documents automatically re-indexed if they change
  7. Use our Golden QnA eval framework to test any workflow (especially useful for testing different embeddings + synthetic data creation prompts)
  8. Hybrid search - search for vectors, keywords or both.
  9. Cloud-based, per-API and per MB pricing

Documents

🔗https://youtu.be/DwhUJ6O_6E8?feature=shared

**Search Query**
how do I make animations?

To create animations using the AI animation generator from Gooey.AI, follow these steps:

1. **Visit the Website**: Go to the explore section on the Gooey.AI website and navigate to the AI animation generator at the end of the section[1].

2. **Set Up Your Animation**:
- **Define Frames**: Start by defining the number of frames for your animation. For simplicity, you can begin with 100 frames[1].
- **Initial Prompt**: At frame 0 (the first frame), describe the scene you want. For example, "an underwater world with muted corals that look like houses with a cinematic lighting glow on them"[1].
- **Midpoint Prompt**: At frame 50 (halfway through the animation), describe how you want the scene to change. For instance, "a house in the desert with cactus around it with a cinematic glow light shining on it"[1].

3. **Submit and Wait**: After setting up your prompts, hit submit. The rendering process can take between 10 to 15 minutes (approximately 600 to 900 seconds)[1].

4. **Use Your Animation**: Once the rendering is complete, you will have a video that you can use in your creative projects, such as music videos, VJing gigs, or backgrounds for bots[1].

By following these steps, you can create evocative and exciting animations using Gooey.AI's simple yet powerful tool.

Happy animating! 🎨✨[1]

Doc Search

Learn python with RAG and LLM

Loading...

0 runs

Enhance your search results and summary with Retreival Augemented Generation. Use vector database (vectorDB) search on documents, links, pdfs, docx, txt, and use summarize with any LLM of your choice. You can choose from several embeddings models, customize hybrid search, choose from a range of citation styles and also create synthetic data! If you are looking for a quick RAG (Retrieval Augmented Generation) tool, look no further!

Documents

🔗https://static.realpython.com/python-basics-sample-chapters.pdf

🔗https://edu.anarcho-copy.org/Programming%20Languages/Python/Automate%20the%20Boring%20Stuff%20with%20Python.pdf

**Search Query**
what are f-strings?

F-strings, or formatted string literals, are a way to embed expressions inside string literals using curly braces `{}`. Introduced in Python 3.6, f-strings provide a concise and readable way to include variable values and expressions directly within strings.

Here’s a basic example of an f-string in action:
```python
name = "Zaphod"
heads = 2
arms = 3
print(f"{name} has {heads} heads and {arms} arms")
# Output: Zaphod has 2 heads and 3 arms
```
In this example, the variables `name`, `heads`, and `arms` are embedded within the string and their values are automatically inserted[1].

Key points about f-strings:
1. **Prefix with 'f'**: The string literal starts with the letter `f` before the opening quotation mark.
2. **Curly Braces for Variables**: Variable names surrounded by curly braces `{}` are replaced by their corresponding values without needing to use `str()`[1].
3. **Expressions Inside Curly Braces**: You can also insert Python expressions between the curly braces, and they will be evaluated and replaced with their result:
```python
n = 3
m = 4
print(f"{n} times {m} is {n*m}")
# Output: 3 times 4 is 12
```
It’s recommended to keep expressions simple to maintain readability[1].

For versions of Python earlier than 3.6, you can achieve similar results using the `.format()` method:
```python
print("{} has {} heads and {} arms".format(name, heads, arms))
# Output: Zaphod has 2 heads and 3 arms
```
However, f-strings are generally shorter and often more readable than using `.format()`[1].

In summary, f-strings are a powerful feature in Python that streamline the process of formatting strings by embedding variables and expressions directly within string literals.

Bulk

Farmer.CHAT Bulk Evaluator (GPT-4o, Mixtral, Claude vs Gemini Pro 1.5)

Loading...

5 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/1cLHMCxn1I4y1CderaXwj7lNwztqRxrWPZ5UmQmsGRvo/edit?usp=sharing

Lipsync

Steve Jobs Lipsync (HD)

Loading...

26 runs

Create high-quality, realistic Lipsync animations from any audio file. Input a sample face gif/video + audio and we will automatically generate a lipsync animation that matches your audio.

Output Video

Download

LLM

Translate Hindi to English with LLM

Loading...

119 runs

Which language model works best for your prompt? What are the biases inherent in each? Compare LLaMA2, Gemini, Mistral, OpenAI GPT-4 engines with more LLMs being added each month.

Prompt

{{ hindiquestion }}

translate the above question from Hindi to English, only return the translation don't say anything extra
Lipsync + Voice

HD Lipsync (with resize option)

Loading...

59 runs

Create realistic lipsync videos with custom voices. Just upload a video or image, choose or bring your own voice from EvelenLabs to generate amazing videos with the Gooey.AI Lipsync Maker.

Output Video

Download

Copilot

The Gooey.AI Support Bot

Loading...

866 runs

This example shows off how we at Gooey.AI have created and use our bot workflow to talk about our company does. Check out the settings to see the description used to power the bots personality.

Prompt

how can i book a demo

Response

To book a demo with Gooey.AI, you can visit the Gooey.AI Contact Page and look for the "Book an Online Demo" section. There, you can fill out your details, choose a demo slot, and experience Gooey.AI in action. If you need further assistance, feel free to contact [email protected].

Lipsync

Short Story (HD)

Loading...

101 runs

Create high-quality, realistic Lipsync animations from any audio file. Input a sample face gif/video + audio and we will automatically generate a lipsync animation that matches your audio.

Output Video

Download

Lipsync

Bensi by Freeman

Loading...

0 runs

Bensi is a benevolent superintelligence from the future. She is aware of the incredible technological achievements made in the future. But also the steep costs of environmental degradation. Bensi has witnessed the power of capitalism to stimulate innovation but has also seen those left behind as the elite reap the financial rewards of development while most people struggle to provide their basic necessities.

Know more about Radbot Bensi: https://www.dara.network/Bensi/

Output Video

Download

Lipsync

Lip Sync with Audio File (HD)

Loading...

167 runs

Create high-quality, realistic Lipsync animations from any audio file. Input a sample face gif/video + audio and we will automatically generate a lipsync animation that matches your audio. Use with our copilot workflow to build a RAG chatbot on WhatsApp, Facebook, Slack or in your own app.

To know more, head to our LIP SYNC HELP GUIDE!

Output Video

Download

Lipsync + Voice

HD Lipsync (basic)

Loading...

77 runs

Create realistic lipsync videos with custom voices. Just upload a video or image, choose or bring your own voice from EvelenLabs to generate amazing videos with the Gooey.AI Lipsync Maker.

Output Video

Download

Bulk

Compare Lipsync TTS (Quality Only)

Loading...

10 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/11OIZjUktUOkroDQ_-9Y8uLS_NIf7Zn4FOisCMZtGNHA/edit#gid=0

Bulk

Gooey Bot Bulk Evaluator (27 may)

Loading...

3 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/134lLtChQh2UxrUkRQUvx1YxB345KdfOb9esc0ZxiCQE/edit#gid=0

Image Generator

VECTOR LOGO

Loading...

26 runs

Create multiple AI photos from one prompt using Stable Diffusion (1.5 -> 2.1, Open/Midjourney), DallE, and other models. Find out which AI Image generator works best for your text prompt on comparing OpenAI, Stability.AI etc.

To know more, head over to our AI IMAGE GENERATOR HELP GUIDE!

Vector logo design of a female Greek statue with octopus tentacles, minimalistic, with a white background

DALL·E 3 (OpenAI)

DALL·E 3 (OpenAI)

Download

LLM

FALANA Chat Analysis Script

Loading...

350 runs

Which language model works best your prompt? Compare your text generations across multiple large language models (LLMs) like OpenAI's evolving and latest ChatGPT engines and others like Curie, Ada, Babbage.

Prompt

{{messages}}

###

Your job is to analyze the user's messages above and determine how to categorize them.

Category choices: [ "😊 Happy", "😟 Worry", "🌟 Hopeful", "😨 Fear", "🤯 Mind Blown" ]

Return your analysis as the following json object: { "How did this evening make you feel about AI and Robots?": "<category>" }

If the messages doesn't fit into any of the categories, return an empty object (`{}`)
Copilot

AdbhutBot with vision

Loading...

43 runs

This bot is designed to help Indians students enroll in scholarship programs and schemes. It asks for their biodata, accepts ID documents to visually understands the data inside in them and then builds to build a profile of the user. It's a great example of using GPT4-Turbo in conjunction with advanced OCR to recognize text (which GPTV doesn't do well).

Response

Thank you for uploading the Government school ID card and the 11th Marksheet. I have verified that the names match with your registration details.

Now, let's finalize your application. I will compile all the information into a PDF for the Vidyasaarathi Scholarship Application Form. Here's a summary of the data we will include:

  • Full Name: Ambika Joshi
  • Date of Birth: Based on the year 1988, your age is approximately 36 years.
  • Gender: Female
  • Email: [email protected]
  • Mobile Number: 9008639111
  • Address: D/O: Vijay Joshi, 215, Panchratna Complex, Bedla road, Udaipur, Girwa, Udaipur Shastri Circle, Udaipur, Girwa, Rajasthan, 313001
  • Aadhaar Number: 4755 9285 9426
  • Government School ID Card: Verified
  • 11th Marksheet: Verified

I will now save this information to a PDF. Please hold on for a moment.

Bulk

Compare Bhojpuri Speech Recognition

Loading...

1 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/1tydW7cX5HHNpImHBFbxAksF4PlX5kw-sZJxwLEUex3I/edit#gid=500122843

Bulk

Compare Hindi Speech Recognition

Loading...

5 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/13f-K31MWsZh2NI9M6tQsmx2CvQEz4GxfJLXVNAhO-tI/edit?usp=sharing

Speech

Whisper Large v3 - autodetect

Loading...

18 runs

Transcribe mp3, WhatsApp audio + wavs with OpenAI's Whisper or AI4Bharat / Bhashini ASR models. Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1lURPiBCCMIF85O9H2hweTDICoCc2mYEC/view

Transcription

Speech

Conformer English (ai4bharat.org)

Loading...

1 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://www.youtube.com/watch?v=Vk4UW9BzvTs

Transcription

Speech

Deepgram English

Loading...

2 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://www.youtube.com/watch?v=Vk4UW9BzvTs

Transcription

Speech

Conformer Hindi (ai4bharat.org)

Loading...

36 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1-Na9eyAk_4qlJ0drUZ4hvjfp7pI9LoBg/view

Transcription

Speech

Whisper Telugu Large v2 (Bhashini)

Loading...

166 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://youtu.be/KHveOTw-CM0?feature=shared

Transcription

QR Code

QR Monster v2 - Landscape

Loading...

74 runs

Create interactive and engaging QR codes with stunning visuals that are amazing for marketing, branding, and more. Combining AI Art and QR Codes has never been easier!
Enter your URL and image prompt, and in just 30 seconds, we'll generate an artistic QR code tailored to your style.

Download

https://gooey.ai/2/GdEbhttps://gooey.ai/copilot (Views: 152)

Image Generator

Archive of Lost Mothers

Loading...

0 runs

Create multiple AI photos from one prompt using Stable Diffusion (1.5 -> 2.1, Open/Midjourney), DallE, and other models. Find out which AI Image generator works best for your text prompt on comparing OpenAI, Stability.AI etc.

To know more, head over to our AI IMAGE GENERATOR HELP GUIDE!

an archival photograph of a tired ((young)) indian (((mother))) with (((tentacle arms))), in the background there is ((octopus womb)) inside a bombay hospital, cinematic, film noir, grainy, ilford, hasselblad, albumen print

DALL·E 3 (OpenAI)

DALL·E 3 (OpenAI)

Download

Bulk

Compare KIKUYU Speech Recognition

Loading...

21 runs

Here we take an input sample of Kikuyu phrases (and their expert transcription and English translations) and compare the top Speech Reco and Translation models. As of April 3, 2024, we've found that Meta's MMS-Large works best for Kikuyu with Ghana NLP's Kikuyu to English translation services.

. Which AI model actually works best for your needs?
Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other.
Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing.
To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit.
More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/11DMc9RYcu5wgdZ8GUFe377q_Vh2T5lgXvzTA6uakzg0/edit#gid=0

QR Code

QR Monster v2 - Landscape

Loading...

1 runs

Create interactive and engaging QR codes with stunning visuals that are amazing for marketing, branding, and more. Combining AI Art and QR Codes has never been easier!
Enter your URL and image prompt, and in just 30 seconds, we'll generate an artistic QR code tailored to your style.

Download

https://gooey.ai/2/GdEbhttps://gooey.ai/copilot (Views: 152)

Bulk

Farmer.CHAT - Bulk Runner and Evaluator (GPT4, Mixtral Comparison)

Loading...

3 runs

Which AI model actually works best for your needs? Upload your own data and evaluate any Gooey.AI workflow, LLM or AI model against any other. Great for large data sets, AI model evaluation, task automation, parallel processing and automated testing. To get started, paste in a Gooey.AI workflow, upload a CSV of your test data (with header names!), check the mapping of headers to workflow inputs and tap Submit. More tips in the Details below.

Documents

🔗https://docs.google.com/spreadsheets/d/1cLHMCxn1I4y1CderaXwj7lNwztqRxrWPZ5UmQmsGRvo/edit?usp=sharing

Eval

Copilot Evaluator

Loading...

57 runs

Documents

🔗bulk-runner-0-1-8.csv

Synthetic Data

HVAC Manual & Video Synthetic Data Maker

Loading...

119 runs

Designed specifically fro HVAC technicians, this workflow takes in PDFs of manuals or how to videos, scans them and then creates FAQs of them using a reasonably smart GPT4 prompt that will avoid creating FAQs based on Table of Contents and other rather meaningless content you would not want to be included in a chatbot's knowledge base.

Perfect for making FAQs from a collection PDF, webpage and videos to create your own chatbot or enterprise copilot (ie. just add the finished Google sheet url to the doc section in https://gooey.ai/copilot).

Documents

🔗https://drive.google.com/file/d/1UzTFF_D5Ta7ZZuG7qmwL1kYuevAnL_Hg/view?usp=drivesdk

Google Sheets URL

https://docs.google.com/spreadsheets/d/1bcvMwNv3xqn3XFJ3CWPKSZhZLHGLxi2ZytxTcbo_RIo/edit#gid=0

Speech

Whisper v3 (with english translation)

Loading...

68 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1DQpKCg2J_Osq7u-2hsfvc6R9dFndaTqk/view?usp=drive_link

Transcription

Speech

Whisper v2 (auto detect)

Loading...

2 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1DQpKCg2J_Osq7u-2hsfvc6R9dFndaTqk/view?usp=drive_link

Transcription

Speech

Chirp/USM (Google)

Loading...

55 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1DQpKCg2J_Osq7u-2hsfvc6R9dFndaTqk/view?usp=drive_link

Transcription

Speech

Whisper Hindi Large v2 (Bhashini)

Loading...

80 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1DQpKCg2J_Osq7u-2hsfvc6R9dFndaTqk/view?usp=drive_link

Transcription

Speech

Azure - Hindi (Microsoft)

Loading...

33 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1DQpKCg2J_Osq7u-2hsfvc6R9dFndaTqk/view?usp=drive_link

Transcription

Speech

Seamless4MT (facebook)

Loading...

50 runs

Transcribe any YouTube, mp3, WhatsApp audio or wavs with the best of transcription and translation AI models from OpenAI (Whisper v2 & v3), Microsoft Azure, Google USM, Meta Seemless4MT, AI4Bharat, Bhashini, etc Optionally translate to any language too.

Documents

🔗https://drive.google.com/file/d/1DQpKCg2J_Osq7u-2hsfvc6R9dFndaTqk/view?usp=drive_link

Transcription