Releases: AssemblyAI/assemblyai-go-sdk
Releases · AssemblyAI/assemblyai-go-sdk
v1.3.0
What's Changed
- Sync from internal repo (2024-03-06) by @marcusolsson in #13
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 inLeMURBaseParams
fromjson.RawMessage
tointerface{}
Enhancements
- Send real-time audio samples as binary data instead of base64.
Full Changelog: v1.2.0...v1.3.0
v1.2.0
What's Changed
- Sync from internal repo (2024-02-27) by @marcusolsson in #11
Full Changelog: v1.1.0...v1.2.0
v1.1.0
What's Changed
- feat(sdk/go): add support for mulaw encoding by @marcusolsson in #10
Full Changelog: v1.0.0...v1.1.0
v1.0.0
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
BREAKING CHANGE: This release renames core types to sync with the OpenAPI spec.
What's Changed
- feat: regenerate types from spec by @marcusolsson in #8
Full Changelog: v1.0.0-beta...v1.0.0-beta.2
v1.0.0-beta
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