File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
api/resources/empathicVoice/types
serialization/resources/empathicVoice/types Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 55export interface TextInput {
66 /** Text to insert into the conversation. */
77 text : string ;
8- type : "text_input " ;
8+ type : "user_input " ;
99}
Original file line number Diff line number Diff line change 55export interface TtsInput {
66 /** Text to be synthesized. */
77 text : string ;
8- type : "tts " ;
8+ type : "assistant_input " ;
99}
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ export const TextInput: core.serialization.ObjectSchema<
1111 Hume . empathicVoice . TextInput
1212> = core . serialization . object ( {
1313 text : core . serialization . string ( ) ,
14- type : core . serialization . stringLiteral ( "text_input " ) ,
14+ type : core . serialization . stringLiteral ( "user_input " ) ,
1515} ) ;
1616
1717export declare namespace TextInput {
1818 interface Raw {
1919 text : string ;
20- type : "text_input " ;
20+ type : "user_input " ;
2121 }
2222}
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ export const TtsInput: core.serialization.ObjectSchema<
1111 Hume . empathicVoice . TtsInput
1212> = core . serialization . object ( {
1313 text : core . serialization . string ( ) ,
14- type : core . serialization . stringLiteral ( "tts " ) ,
14+ type : core . serialization . stringLiteral ( "assistant_input " ) ,
1515} ) ;
1616
1717export declare namespace TtsInput {
1818 interface Raw {
1919 text : string ;
20- type : "tts " ;
20+ type : "assistant_input " ;
2121 }
2222}
You can’t perform that action at this time.
0 commit comments