Test

<back to all web services

SpeechToText

AI

Convert speech to text

import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
import 'dart:collection';

/**
* Output object for generated text
*/
class TextOutput implements IConvertible
{
    /**
    * The generated text
    */
    // @ApiMember(Description="The generated text")
    String? text;

    TextOutput({this.text});
    TextOutput.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        text = json['text'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'text': text
    };

    getTypeName() => "TextOutput";
    TypeContext? context = _ctx;
}

/**
* Response object for text generation requests
*/
// @Api(Description="Response object for text generation requests")
class TextGenerationResponse implements IConvertible
{
    /**
    * List of generated text outputs
    */
    // @ApiMember(Description="List of generated text outputs")
    List<TextOutput>? results;

    /**
    * Detailed response status information
    */
    // @ApiMember(Description="Detailed response status information")
    ResponseStatus? responseStatus;

    TextGenerationResponse({this.results,this.responseStatus});
    TextGenerationResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        results = JsonConverters.fromJson(json['results'],'List<TextOutput>',context!);
        responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'results': JsonConverters.toJson(results,'List<TextOutput>',context!),
        'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
    };

    getTypeName() => "TextGenerationResponse";
    TypeContext? context = _ctx;
}

/**
* Convert speech to text
*/
// @Api(Description="Convert speech to text")
class SpeechToText implements IGeneration, IConvertible
{
    /**
    * The audio stream containing the speech to be transcribed
    */
    // @ApiMember(Description="The audio stream containing the speech to be transcribed")
    // @required()
    String? audio;

    /**
    * Optional client-provided identifier for the request
    */
    // @ApiMember(Description="Optional client-provided identifier for the request")
    String? refId;

    /**
    * Tag to identify the request
    */
    // @ApiMember(Description="Tag to identify the request")
    String? tag;

    SpeechToText({this.audio,this.refId,this.tag});
    SpeechToText.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        audio = json['audio'];
        refId = json['refId'];
        tag = json['tag'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'audio': audio,
        'refId': refId,
        'tag': tag
    };

    getTypeName() => "SpeechToText";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: <String, TypeInfo> {
    'TextOutput': TypeInfo(TypeOf.Class, create:() => TextOutput()),
    'TextGenerationResponse': TypeInfo(TypeOf.Class, create:() => TextGenerationResponse()),
    'List<TextOutput>': TypeInfo(TypeOf.Class, create:() => <TextOutput>[]),
    'SpeechToText': TypeInfo(TypeOf.Class, create:() => SpeechToText()),
});

Dart SpeechToText DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/SpeechToText HTTP/1.1 
Host: test.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<SpeechToText xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel">
  <Audio>String</Audio>
  <RefId>String</RefId>
  <Tag>String</Tag>
</SpeechToText>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<TextGenerationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel">
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
  <Results>
    <TextOutput>
      <Text>String</Text>
    </TextOutput>
  </Results>
</TextGenerationResponse>