improved

23rd Feb 2024 - Audio enhancement endpoints; Text Tagger; Voice Intelligence Layer improvements

We have added audio enhancement endpoints, added our Text Tagger to the SDK and added some security improvements and API improvements for our Voice Intelligence Layer

New Audio enhancement endpoints

We are continuously working on enriching our audio capabilities so we've added the ability to evaluate, enhance and denoise audio files.

:headphones: We added evaluate audioEvaluate an audio file.

:headphones: Enhance audio Evaluate and enhance an audio file.

:headphones: Denoise an audio file in order to remove background noise. Denoise an audio file.

Improvements

:100: A quality of life improvement the Voice Intelligence Layer is now enabled if you use one of our in built tags such as <as:break>

:100: We also added improvements to the file transfer routes so you no longer need to add file names

:bug:We added some security improvements for our customers to the voice preview

Recommendations using our Text Tagger

We've added recommendations for tags, moods and tones using the Text Tagger

See how to use them on our docs - https://docs.audiostack.ai/reference/postrecommendmoods

text = "AudioStack's technology seamlessly integrates into your product or workflow and cuts your audio production cycles to seconds while making your budgets go further."
number_of_results = 2
tags = ["happy", "fun", "valuable", "fast"]
category = "my category"

tag_item = audiostack.Content.RecommendTag.create(
    text=text, number_of_results=number_of_results, tags=tags, category=category
)
print(tag_item)

mood_item = audiostack.Content.RecommendMood.create(
    text=text, number_of_results=number_of_results
)
print(mood_item)

tone_item = audiostack.Content.RecommendTone.create(
    text=text, number_of_results=number_of_results
)
print(tone_item)