# SmartAudioWhisperAdapter

## Overview

This adapter transcribes the audio from the associated Wisej.NET [Audio](https://docs.wisej.com/api/wisej.web/media/wisej.web.audio) control and updates the Control's Text property with the recognized text in the original language of the audio.

When the AutoRun property is set to true, this adapter automatically begins transcription as soon as the associated audio control starts playing its content.Otherwise, you need to manually initiate the transcription process by calling `this.adapter.RunAsync(audio_control)`.

## Configuration

```csharp
[Extends(typeof(Audio), allowMultiple: true)]
[WorksWith(typeof(OpenAIEndpointWhisper))]
[WorksWith(typeof(GroqCloudEndpointWhisper))]
[WorksWith(typeof(LocalAIEndpointWhisper))]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wisej.com/ai/components/adapters/smartaudiowhisperadapter.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
