Originally posted by @iid7oom21 in #272
Originally posted by @iid7oom21 in #273
voice = client.voices.retrieve(id=voice_id)
if voice.status == 'READY':
print('Preview:', voice.preview_url)
Originally posted by @iid7oom21 in #274
client.avatars.update(
avatar_id,
voice={
'type': 'custom',
'id': voice.id,
},
)
Originally posted by @iid7oom21 in #275
avatar = client.avatars.create(
name='Support Agent',
reference_image='https://example.com/avatar.png',
voice={
'type': 'custom',
'id': voice.id,
},
personality='You are a helpful customer support agent...',
)
Originally posted by @iid7oom21 in #272
Originally posted by @iid7oom21 in #273
voice = client.voices.retrieve(id=voice_id)
if voice.status == 'READY':
print('Preview:', voice.preview_url)
Originally posted by @iid7oom21 in #274
client.avatars.update(
avatar_id,
voice={
'type': 'custom',
'id': voice.id,
},
)
Originally posted by @iid7oom21 in #275
avatar = client.avatars.create(
name='Support Agent',
reference_image='https://example.com/avatar.png',
voice={
'type': 'custom',
'id': voice.id,
},
personality='You are a helpful customer support agent...',
)