> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inworld.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# RemoteSTTComponent

> Remote STT (Speech-to-Text) component for audio transcription services. Provides access to external speech recognition services to convert audio input into text transcriptions.

## Examples

```typescript theme={"system"}
const sttComponent = new RemoteSTTComponent({
\ *   sttConfig: {
provider: 'whisper',
modelName: 'whisper-1',
language: 'en'
}
});
```

## Constructors

* [constructor](#constructor)

## Interfaces

* [RemoteSTTComponentProps](#remotesttcomponentprops)

***

## Constructors

### constructor

```typescript theme={"system"}
new RemoteSTTComponent(props: RemoteSTTComponentProps): RemoteSTTComponent
```

Creates a new RemoteSTTComponent instance.

#### Parameters

<ParamField body="props" type="RemoteSTTComponentProps" required>
  Configuration for the remote STT component.
</ParamField>

#### Returns

`RemoteSTTComponent`

## Interfaces

### RemoteSTTComponentProps

Configuration options for `RemoteSTTComponent` creation.

#### Properties

**sttConfig**: `{ languageCode?: string; }`

STT configuration object.
