Skip to content

Releases: AssemblyAI/assemblyai-go-sdk

v1.3.0

06 Mar 16:16
5b819ff
Compare
Choose a tag to compare

What's Changed

New Features

Support for word search

resp, _ := client.Transcripts.WordSearch(ctx, "TRANSCRIPT_ID", []string{"hopkins", "wildfires"})

for _, match := range resp.Matches {
    fmt.Println(aai.ToString(match.Text), match.Timestamps, aai.ToInt64(match.Count))
}

Support for purging LeMUR request data

result, _ := client.LeMUR.Task(ctx, params)

response, _ := client.LeMUR.PurgeRequestData(ctx, aai.ToString(result.RequestID))

if aai.ToBool(response.Deleted) {
    fmt.Println("Successfully deleted request data")
}

Bug Fixes

  • Change the type of the Context field in LeMURBaseParams from json.RawMessage to interface{}

Enhancements

  • Send real-time audio samples as binary data instead of base64.

Full Changelog: v1.2.0...v1.3.0

v1.2.0

27 Feb 16:53
8e723bf
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.2.0

v1.1.0

08 Feb 14:26
b3e8337
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.1.0

v1.0.0

18 Jan 17:10
11c324d
Compare
Choose a tag to compare

Initial release

We're excited to announce the release of our AssemblyAI SDK for Go! 🎉

If you experience any issues, please submit an issue.

v1.0.0-beta.2

23 Nov 11:49
825a7be
Compare
Choose a tag to compare
v1.0.0-beta.2 Pre-release
Pre-release

BREAKING CHANGE: This release renames core types to sync with the OpenAPI spec.

What's Changed

Full Changelog: v1.0.0-beta...v1.0.0-beta.2

v1.0.0-beta

21 Nov 17:06
bcd2742
Compare
Choose a tag to compare
v1.0.0-beta Pre-release
Pre-release
docs: update links in README (#6)

* chore(sdk/go): add examples to copybara script (#2755)

GitOrigin-RevId: cf6b3aabfb05946081448cfcd2119db33c13375a

* feat(sdk/go): add GitHub workflow and fix README docs (#2836)

GitOrigin-RevId: 2f3d95098da634191437d4c40eb40a03d23a1315