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 .csv suffix or ?format=csv

HTTP + CSV

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

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

{"audio":"String","refId":"String","tag":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"results":[{"text":"String"}],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}