Newsletter

🚀New AssemblyAI Go SDK & Speech-to-Text Tutorials

🚀Announcing the AssemblyAI Go SDK & latest Speech-to-text tutorials

🚀New AssemblyAI Go SDK & Speech-to-Text Tutorials

Hey 👋, this weekly update contains the latest info on our new product features, tutorials, and our community.

🚀Announcing the AssemblyAI Go SDK

We've just launched our new Go SDK to make it far easier for Golang developers to use the AssemblyAI API. This release marks a significant milestone as it joins our suite of SDKs, which already includes PythonTypeScriptJavaScript, and Java.

Getting Started with Go Speech-to-Text:

package main

import (
    "context"
    "fmt"
    "os"

    aai "github.com/AssemblyAI/assemblyai-go-sdk"
)

func main() {
    ctx := context.Background()

    audioURL := "https://storage.googleapis.com/aai-web-samples/gettysburg.wav"

    client := aai.NewClient("YOUR_API_KEY")

    transcript, err := client.Transcripts.TranscribeFromURL(ctx, audioURL, nil)

    fmt.Println(*transcript.Text)
}

Read the getting started guide with the new Golang code to see the full tutorial on how to use the above code.

Fresh From Our Blog

How to do Speech-To-Text with Go: Learn how Speech Recognition can be integrated into your Go application in only a few lines of code. Read more>>

How to Get YouTube Video Transcripts: Learn how to get the transcript of a YouTube video with this easy-to-follow Python tutorial.  Read more>>

Extract phone call insights with LLMs in Python: Learn how to automatically extract insights from customer calls with Large Language Models (LLMs) and Python. Read more>>

Live Speech-to-Text With Google Docs Using LLMs (Python Tutorial): Discover how to implement real-time speech-to-text transcription in Google Docs using AssemblyAI's Speech-to-text API and large language models (LLMs).

The Physics of Generative AI - How AI models use physics to generate novel data: Modern Generative AI is capable of generating entire stories and photorealistic images, but how do these models actually work?

No-Code, No Problem: Create Speech-to-Text Apps with Minimal or No Coding: Learn about nine simple no-code and low-code integrations and SDKs to start building with AI Speech-to-Text.