(* Options: Date: 2025-05-12 19:37:08 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SpeechToText.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Test.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IGeneration = abstract RefId:String with get,set abstract Tag:String with get,set /// ///Output object for generated text /// [] type TextOutput() = /// ///The generated text /// [] member val Text:String = null with get,set /// ///Response object for text generation requests /// [] [] type TextGenerationResponse() = /// ///List of generated text outputs /// [] member val Results:ResizeArray = null with get,set /// ///Detailed response status information /// [] member val ResponseStatus:ResponseStatus = null with get,set /// ///Convert speech to text /// [] [] type SpeechToText() = interface IReturn /// ///The audio stream containing the speech to be transcribed /// [] [] member val Audio:String = null with get,set /// ///Optional client-provided identifier for the request /// [] member val RefId:String = null with get,set /// ///Tag to identify the request /// [] member val Tag:String = null with get,set