hume 0.11.5-beta.2 → 0.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/.mock/definition/empathic-voice/__package__.yml +28 -517
  2. package/.mock/definition/empathic-voice/chatGroups.yml +1 -1
  3. package/.mock/definition/empathic-voice/chats.yml +1 -1
  4. package/.mock/definition/empathic-voice/configs.yml +34 -151
  5. package/.mock/definition/empathic-voice/prompts.yml +21 -21
  6. package/.mock/definition/empathic-voice/tools.yml +10 -10
  7. package/.mock/definition/tts/__package__.yml +6 -22
  8. package/api/resources/empathicVoice/resources/chat/client/Socket.js +1 -4
  9. package/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +1 -1
  10. package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +1 -1
  11. package/api/resources/empathicVoice/resources/chats/client/Client.d.ts +1 -1
  12. package/api/resources/empathicVoice/resources/chats/client/Client.js +1 -1
  13. package/api/resources/empathicVoice/resources/configs/client/Client.d.ts +9 -9
  14. package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  15. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +1 -1
  16. package/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +10 -10
  17. package/api/resources/empathicVoice/resources/prompts/client/Client.js +10 -10
  18. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +1 -1
  19. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +1 -1
  20. package/api/resources/empathicVoice/resources/tools/client/Client.d.ts +10 -10
  21. package/api/resources/empathicVoice/resources/tools/client/Client.js +10 -10
  22. package/api/resources/empathicVoice/types/JsonMessage.d.ts +1 -1
  23. package/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
  24. package/api/resources/empathicVoice/types/PostedBuiltinToolName.d.ts +1 -1
  25. package/api/resources/empathicVoice/types/PostedWebhookSpec.d.ts +1 -1
  26. package/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
  27. package/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
  28. package/api/resources/empathicVoice/types/ReturnWebhookSpec.d.ts +1 -1
  29. package/dist/api/resources/empathicVoice/resources/chat/client/Socket.js +1 -4
  30. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +1 -1
  31. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +1 -1
  32. package/dist/api/resources/empathicVoice/resources/chats/client/Client.d.ts +1 -1
  33. package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +1 -1
  34. package/dist/api/resources/empathicVoice/resources/configs/client/Client.d.ts +9 -9
  35. package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  36. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +1 -1
  37. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +10 -10
  38. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +10 -10
  39. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +1 -1
  40. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +1 -1
  41. package/dist/api/resources/empathicVoice/resources/tools/client/Client.d.ts +10 -10
  42. package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +10 -10
  43. package/dist/api/resources/empathicVoice/types/JsonMessage.d.ts +1 -1
  44. package/dist/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
  45. package/dist/api/resources/empathicVoice/types/PostedBuiltinToolName.d.ts +1 -1
  46. package/dist/api/resources/empathicVoice/types/PostedWebhookSpec.d.ts +1 -1
  47. package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
  48. package/dist/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
  49. package/dist/api/resources/empathicVoice/types/ReturnWebhookSpec.d.ts +1 -1
  50. package/dist/serialization/resources/empathicVoice/types/JsonMessage.d.ts +2 -1
  51. package/dist/serialization/resources/empathicVoice/types/JsonMessage.js +2 -0
  52. package/dist/version.d.ts +1 -1
  53. package/dist/version.js +1 -1
  54. package/package.json +1 -1
  55. package/reference.md +43 -485
  56. package/serialization/resources/empathicVoice/types/JsonMessage.d.ts +2 -1
  57. package/serialization/resources/empathicVoice/types/JsonMessage.js +2 -0
  58. package/version.d.ts +1 -1
  59. package/version.js +1 -1
  60. package/.mock/definition/empathic-voice/customVoices.yml +0 -283
@@ -1004,6 +1004,7 @@ types:
1004
1004
  - type: ToolCallMessage
1005
1005
  - type: ToolResponseMessage
1006
1006
  - type: ToolErrorMessage
1007
+ - type: AssistantProsody
1007
1008
  source:
1008
1009
  openapi: evi-asyncapi.json
1009
1010
  HTTPValidationError:
@@ -1388,7 +1389,7 @@ types:
1388
1389
 
1389
1390
 
1390
1391
  For help writing a system prompt, see our [Prompting
1391
- Guide](/docs/empathic-voice-interface-evi/guides/prompting).
1392
+ Guide](/docs/speech-to-speech-evi/guides/prompting).
1392
1393
  version:
1393
1394
  type: integer
1394
1395
  docs: >-
@@ -1424,363 +1425,6 @@ types:
1424
1425
  docs: An optional description of the Prompt version.
1425
1426
  source:
1426
1427
  openapi: evi-openapi.json
1427
- ReturnPagedCustomVoices:
1428
- docs: A paginated list of custom voices returned from the server
1429
- properties:
1430
- page_number:
1431
- type: integer
1432
- docs: >-
1433
- The page number of the returned list.
1434
-
1435
-
1436
- This value corresponds to the `page_number` parameter specified in the
1437
- request. Pagination uses zero-based indexing.
1438
- page_size:
1439
- type: integer
1440
- docs: >-
1441
- The maximum number of items returned per page.
1442
-
1443
-
1444
- This value corresponds to the `page_size` parameter specified in the
1445
- request.
1446
- total_pages:
1447
- type: integer
1448
- docs: The total number of pages in the collection.
1449
- custom_voices_page:
1450
- docs: List of Custom Voices for the specified `page_number` and `page_size`.
1451
- type: list<ReturnCustomVoice>
1452
- source:
1453
- openapi: evi-openapi.json
1454
- PostedCustomVoiceBaseVoice:
1455
- enum:
1456
- - ITO
1457
- - KORA
1458
- - DACHER
1459
- - AURA
1460
- - FINN
1461
- - WHIMSY
1462
- - STELLA
1463
- - SUNNY
1464
- docs: Specifies the base voice used to create the Custom Voice.
1465
- inline: true
1466
- source:
1467
- openapi: evi-openapi.json
1468
- PostedCustomVoiceParameters:
1469
- docs: >-
1470
- The specified attributes of a Custom Voice.
1471
-
1472
-
1473
- If no parameters are specified then all attributes will be set to their
1474
- defaults, meaning no modfications will be made to the base voice.
1475
- properties:
1476
- gender:
1477
- type: optional<integer>
1478
- docs: >-
1479
- The perceived tonality of the voice, reflecting characteristics
1480
- typically associated with masculinity and femininity.
1481
-
1482
-
1483
- The default value is `0`, with a minimum of `-100` (more masculine)
1484
- and a maximum of `100` (more feminine). A value of `0` leaves this
1485
- parameter unchanged from the base voice.
1486
- assertiveness:
1487
- type: optional<integer>
1488
- docs: >-
1489
- The perceived firmness of the voice, ranging between whiny and bold.
1490
-
1491
-
1492
- The default value is `0`, with a minimum of `-100` (whiny) and a
1493
- maximum of `100` (bold). A value of `0` leaves this parameter
1494
- unchanged from the base voice.
1495
- buoyancy:
1496
- type: optional<integer>
1497
- docs: >-
1498
- The perceived density of the voice, ranging between deflated and
1499
- buoyant.
1500
-
1501
-
1502
- The default value is `0`, with a minimum of `-100` (deflated) and a
1503
- maximum of `100` (buoyant). A value of `0` leaves this parameter
1504
- unchanged from the base voice.
1505
- confidence:
1506
- type: optional<integer>
1507
- docs: >-
1508
- The perceived assuredness of the voice, ranging between shy and
1509
- confident.
1510
-
1511
-
1512
- The default value is `0`, with a minimum of `-100` (shy) and a maximum
1513
- of `100` (confident). A value of `0` leaves this parameter unchanged
1514
- from the base voice.
1515
- enthusiasm:
1516
- type: optional<integer>
1517
- docs: >-
1518
- The perceived excitement within the voice, ranging between calm and
1519
- enthusiastic.
1520
-
1521
-
1522
- The default value is `0`, with a minimum of `-100` (calm) and a
1523
- maximum of `100` (enthusiastic). A value of `0` leaves this parameter
1524
- unchanged from the base voice.
1525
- nasality:
1526
- type: optional<integer>
1527
- docs: >-
1528
- The perceived openness of the voice, ranging between clear and nasal.
1529
-
1530
-
1531
- The default value is `0`, with a minimum of `-100` (clear) and a
1532
- maximum of `100` (nasal). A value of `0` leaves this parameter
1533
- unchanged from the base voice.
1534
- relaxedness:
1535
- type: optional<integer>
1536
- docs: >-
1537
- The perceived stress within the voice, ranging between tense and
1538
- relaxed.
1539
-
1540
-
1541
- The default value is `0`, with a minimum of `-100` (tense) and a
1542
- maximum of `100` (relaxed). A value of `0` leaves this parameter
1543
- unchanged from the base voice.
1544
- smoothness:
1545
- type: optional<integer>
1546
- docs: >-
1547
- The perceived texture of the voice, ranging between smooth and
1548
- staccato.
1549
-
1550
-
1551
- The default value is `0`, with a minimum of `-100` (smooth) and a
1552
- maximum of `100` (staccato). A value of `0` leaves this parameter
1553
- unchanged from the base voice.
1554
- tepidity:
1555
- type: optional<integer>
1556
- docs: >-
1557
- The perceived liveliness behind the voice, ranging between tepid and
1558
- vigorous.
1559
-
1560
-
1561
- The default value is `0`, with a minimum of `-100` (tepid) and a
1562
- maximum of `100` (vigorous). A value of `0` leaves this parameter
1563
- unchanged from the base voice.
1564
- tightness:
1565
- type: optional<integer>
1566
- docs: >-
1567
- The perceived containment of the voice, ranging between tight and
1568
- breathy.
1569
-
1570
-
1571
- The default value is `0`, with a minimum of `-100` (tight) and a
1572
- maximum of `100` (breathy). A value of `0` leaves this parameter
1573
- unchanged from the base voice.
1574
- source:
1575
- openapi: evi-openapi.json
1576
- inline: true
1577
- PostedCustomVoice:
1578
- docs: >-
1579
- A Custom Voice specification to be associated with this Config.
1580
-
1581
-
1582
- If a Custom Voice specification is not provided then the
1583
- [name](/reference/empathic-voice-interface-evi/configs/create-config#request.body.voice.name)
1584
- of a base voice or previously created Custom Voice must be provided.
1585
-
1586
- See our [Voices guide](/docs/empathic-voice-interface-evi/configuration/voices) for a tutorial on how to craft a Custom Voice.
1587
- properties:
1588
- name:
1589
- type: string
1590
- docs: >-
1591
- The name of the Custom Voice. Maximum length of 75 characters. Will be
1592
- converted to all-uppercase. (e.g., "sample voice" becomes "SAMPLE
1593
- VOICE")
1594
- base_voice:
1595
- type: PostedCustomVoiceBaseVoice
1596
- docs: Specifies the base voice used to create the Custom Voice.
1597
- parameter_model:
1598
- type: literal<"20241004-11parameter">
1599
- docs: >-
1600
- The name of the parameter model used to define which attributes are
1601
- used by the `parameters` field. Currently, only `20241004-11parameter`
1602
- is supported as the parameter model.
1603
- parameters:
1604
- type: optional<PostedCustomVoiceParameters>
1605
- docs: >-
1606
- The specified attributes of a Custom Voice.
1607
-
1608
-
1609
- If no parameters are specified then all attributes will be set to
1610
- their defaults, meaning no modfications will be made to the base
1611
- voice.
1612
- source:
1613
- openapi: evi-openapi.json
1614
- ReturnCustomVoiceBaseVoice:
1615
- enum:
1616
- - ITO
1617
- - KORA
1618
- - DACHER
1619
- - AURA
1620
- - FINN
1621
- - WHIMSY
1622
- - STELLA
1623
- - SUNNY
1624
- docs: The base voice used to create the Custom Voice.
1625
- inline: true
1626
- source:
1627
- openapi: evi-openapi.json
1628
- ReturnCustomVoiceParameters:
1629
- docs: >-
1630
- The specified attributes of a Custom Voice. If a parameter's value is `0`
1631
- (default), it will not be included in the response.
1632
- properties:
1633
- gender:
1634
- type: optional<integer>
1635
- docs: >-
1636
- The perceived tonality of the voice, reflecting characteristics
1637
- typically associated with masculinity and femininity.
1638
-
1639
-
1640
- The default value is `0`, with a minimum of `-100` (more masculine)
1641
- and a maximum of `100` (more feminine). A value of `0` leaves this
1642
- parameter unchanged from the base voice.
1643
- assertiveness:
1644
- type: optional<integer>
1645
- docs: >-
1646
- The perceived firmness of the voice, ranging between whiny and bold.
1647
-
1648
-
1649
- The default value is `0`, with a minimum of `-100` (whiny) and a
1650
- maximum of `100` (bold). A value of `0` leaves this parameter
1651
- unchanged from the base voice.
1652
- buoyancy:
1653
- type: optional<integer>
1654
- docs: >-
1655
- The perceived density of the voice, ranging between deflated and
1656
- buoyant.
1657
-
1658
-
1659
- The default value is `0`, with a minimum of `-100` (deflated) and a
1660
- maximum of `100` (buoyant). A value of `0` leaves this parameter
1661
- unchanged from the base voice.
1662
- confidence:
1663
- type: optional<integer>
1664
- docs: >-
1665
- The perceived assuredness of the voice, ranging between shy and
1666
- confident.
1667
-
1668
-
1669
- The default value is `0`, with a minimum of `-100` (shy) and a maximum
1670
- of `100` (confident). A value of `0` leaves this parameter unchanged
1671
- from the base voice.
1672
- enthusiasm:
1673
- type: optional<integer>
1674
- docs: >-
1675
- The perceived excitement within the voice, ranging between calm and
1676
- enthusiastic.
1677
-
1678
-
1679
- The default value is `0`, with a minimum of `-100` (calm) and a
1680
- maximum of `100` (enthusiastic). A value of `0` leaves this parameter
1681
- unchanged from the base voice.
1682
- nasality:
1683
- type: optional<integer>
1684
- docs: >-
1685
- The perceived openness of the voice, ranging between clear and nasal.
1686
-
1687
-
1688
- The default value is `0`, with a minimum of `-100` (clear) and a
1689
- maximum of `100` (nasal). A value of `0` leaves this parameter
1690
- unchanged from the base voice.
1691
- relaxedness:
1692
- type: optional<integer>
1693
- docs: >-
1694
- The perceived stress within the voice, ranging between tense and
1695
- relaxed.
1696
-
1697
-
1698
- The default value is `0`, with a minimum of `-100` (tense) and a
1699
- maximum of `100` (relaxed). A value of `0` leaves this parameter
1700
- unchanged from the base voice.
1701
- smoothness:
1702
- type: optional<integer>
1703
- docs: >-
1704
- The perceived texture of the voice, ranging between smooth and
1705
- staccato.
1706
-
1707
-
1708
- The default value is `0`, with a minimum of `-100` (smooth) and a
1709
- maximum of `100` (staccato). A value of `0` leaves this parameter
1710
- unchanged from the base voice.
1711
- tepidity:
1712
- type: optional<integer>
1713
- docs: >-
1714
- The perceived liveliness behind the voice, ranging between tepid and
1715
- vigorous.
1716
-
1717
-
1718
- The default value is `0`, with a minimum of `-100` (tepid) and a
1719
- maximum of `100` (vigorous). A value of `0` leaves this parameter
1720
- unchanged from the base voice.
1721
- tightness:
1722
- type: optional<integer>
1723
- docs: >-
1724
- The perceived containment of the voice, ranging between tight and
1725
- breathy.
1726
-
1727
-
1728
- The default value is `0`, with a minimum of `-100` (tight) and a
1729
- maximum of `100` (breathy). A value of `0` leaves this parameter
1730
- unchanged from the base voice.
1731
- source:
1732
- openapi: evi-openapi.json
1733
- inline: true
1734
- ReturnCustomVoice:
1735
- docs: A Custom Voice specification associated with this Config.
1736
- properties:
1737
- id:
1738
- type: string
1739
- docs: Identifier for a Custom Voice. Formatted as a UUID.
1740
- version:
1741
- type: integer
1742
- docs: >-
1743
- Version number for a Custom Voice.
1744
-
1745
-
1746
- Custom Voices, Prompts, Configs, and Tools are versioned. This
1747
- versioning system supports iterative development, allowing you to
1748
- progressively refine configurations and revert to previous versions if
1749
- needed.
1750
-
1751
-
1752
- Version numbers are integer values representing different iterations
1753
- of the Custom Voice. Each update to the Custom Voice increments its
1754
- version number.
1755
- name:
1756
- type: string
1757
- docs: The name of the Custom Voice. Maximum length of 75 characters.
1758
- created_on:
1759
- type: long
1760
- docs: >-
1761
- Time at which the Custom Voice was created. Measured in seconds since
1762
- the Unix epoch.
1763
- modified_on:
1764
- type: long
1765
- docs: >-
1766
- Time at which the Custom Voice was last modified. Measured in seconds
1767
- since the Unix epoch.
1768
- base_voice:
1769
- type: ReturnCustomVoiceBaseVoice
1770
- docs: The base voice used to create the Custom Voice.
1771
- parameter_model:
1772
- type: literal<"20241004-11parameter">
1773
- docs: >-
1774
- The name of the parameter model used to define which attributes are
1775
- used by the `parameters` field. Currently, only `20241004-11parameter`
1776
- is supported as the parameter model.
1777
- parameters:
1778
- type: ReturnCustomVoiceParameters
1779
- docs: >-
1780
- The specified attributes of a Custom Voice. If a parameter's value is
1781
- `0` (default), it will not be included in the response.
1782
- source:
1783
- openapi: evi-openapi.json
1784
1428
  ReturnPagedConfigs:
1785
1429
  docs: A paginated list of config versions returned from the server
1786
1430
  properties:
@@ -1840,7 +1484,7 @@ types:
1840
1484
  Specifies the EVI version to use. Use `"1"` for version 1, or `"2"`
1841
1485
  for the latest enhanced version. For a detailed comparison of the two
1842
1486
  versions, refer to our
1843
- [guide](/docs/empathic-voice-interface-evi/configuration/evi-version).
1487
+ [guide](/docs/speech-to-speech-evi/configuration/evi-version).
1844
1488
  timeouts: optional<ReturnTimeoutSpecs>
1845
1489
  nudges: optional<ReturnNudgeSpec>
1846
1490
  ellm_model:
@@ -1853,9 +1497,7 @@ types:
1853
1497
  model that takes into account both expression measures and language.
1854
1498
  The eLLM generates short, empathic language responses and guides
1855
1499
  text-to-speech (TTS) prosody.
1856
- voice:
1857
- type: optional<ReturnVoice>
1858
- docs: A voice specification associated with this Config.
1500
+ voice: optional<unknown>
1859
1501
  prompt: optional<ReturnPrompt>
1860
1502
  tools:
1861
1503
  type: optional<list<optional<ReturnUserDefinedTool>>>
@@ -2517,7 +2159,7 @@ types:
2517
2159
 
2518
2160
 
2519
2161
  For more information, see our guide on [using built-in
2520
- tools](/docs/empathic-voice-interface-evi/features/tool-use#using-built-in-tools).
2162
+ tools](/docs/speech-to-speech-evi/features/tool-use#using-built-in-tools).
2521
2163
  inline: true
2522
2164
  source:
2523
2165
  openapi: evi-openapi.json
@@ -2539,7 +2181,7 @@ types:
2539
2181
 
2540
2182
 
2541
2183
  For more information, see our guide on [using built-in
2542
- tools](/docs/empathic-voice-interface-evi/features/tool-use#using-built-in-tools).
2184
+ tools](/docs/speech-to-speech-evi/features/tool-use#using-built-in-tools).
2543
2185
  fallback_content:
2544
2186
  type: optional<string>
2545
2187
  docs: >-
@@ -2715,20 +2357,11 @@ types:
2715
2357
 
2716
2358
 
2717
2359
  See our [webhooks
2718
- guide](/docs/empathic-voice-interface-evi/configuration/build-a-configuration#supported-events)
2360
+ guide](/docs/speech-to-speech-evi/configuration/build-a-configuration#supported-events)
2719
2361
  for more information on supported events.
2720
2362
  type: list<PostedWebhookEventType>
2721
2363
  source:
2722
2364
  openapi: evi-openapi.json
2723
- ReturnVoiceSpec:
2724
- discriminated: false
2725
- docs: An voice specification posted to the server
2726
- union:
2727
- - ReturnVoiceSpecEvi2
2728
- - ReturnVoiceSpecOctavecustom
2729
- - ReturnVoiceSpecOctaveshared
2730
- source:
2731
- openapi: evi-openapi.json
2732
2365
  ReturnLanguageModel:
2733
2366
  docs: A specific LanguageModel
2734
2367
  properties:
@@ -2898,7 +2531,7 @@ types:
2898
2531
 
2899
2532
 
2900
2533
  See our [webhooks
2901
- guide](/docs/empathic-voice-interface-evi/configuration/build-a-configuration#supported-events)
2534
+ guide](/docs/speech-to-speech-evi/configuration/build-a-configuration#supported-events)
2902
2535
  for more information on supported events.
2903
2536
  type: list<ReturnWebhookEventType>
2904
2537
  source:
@@ -3210,48 +2843,6 @@ types:
3210
2843
  docs: Duration in seconds for the timeout.
3211
2844
  source:
3212
2845
  openapi: evi-openapi.json
3213
- ReturnVoiceSpecEvi2:
3214
- docs: A specific voice specification for use with EVI 1 or 2
3215
- properties:
3216
- provider:
3217
- type: string
3218
- docs: The provider of the voice to use. Based on the enum VoiceProvider.
3219
- name:
3220
- type: optional<string>
3221
- docs: >-
3222
- String with the name of the voice to use. Maximum length of 75
3223
- characters. Will be converted to all-uppercase.
3224
- custom_voice: ReturnCustomVoice
3225
- source:
3226
- openapi: evi-openapi.json
3227
- ReturnVoiceSpecOctavecustom:
3228
- docs: A specific voice specification for an Octave voice
3229
- properties:
3230
- provider:
3231
- type: string
3232
- docs: The provider of the voice to use. Based on the enum VoiceProvider.
3233
- name:
3234
- type: optional<string>
3235
- docs: >-
3236
- String with the name of the voice to use. Maximum length of 75
3237
- characters. Will be converted to all-uppercase.
3238
- custom_voice: optional<ReturnVoiceOctaveCustom>
3239
- source:
3240
- openapi: evi-openapi.json
3241
- ReturnVoiceSpecOctaveshared:
3242
- docs: A specific voice specification for an Octave voice
3243
- properties:
3244
- provider:
3245
- type: string
3246
- docs: The provider of the voice to use. Based on the enum VoiceProvider.
3247
- name:
3248
- type: optional<string>
3249
- docs: >-
3250
- String with the name of the voice to use. Maximum length of 75
3251
- characters. Will be converted to all-uppercase.
3252
- custom_voice: optional<ReturnVoiceOctaveShared>
3253
- source:
3254
- openapi: evi-openapi.json
3255
2846
  ReturnEventMessageSpec:
3256
2847
  docs: A specific event message configuration to be returned from the server
3257
2848
  properties:
@@ -3291,116 +2882,36 @@ types:
3291
2882
  minutes).
3292
2883
  source:
3293
2884
  openapi: evi-openapi.json
3294
- ReturnVoiceOctaveCustom:
3295
- docs: An octave custom voice specification returned from the server
3296
- properties:
3297
- id: optional<string>
3298
- version: optional<integer>
3299
- name: optional<string>
3300
- description: optional<string>
3301
- voice_type: optional<string>
3302
- created_on: optional<long>
3303
- modified_on: optional<long>
3304
- voice_prompt: optional<string>
3305
- normalization_gain_db: optional<double>
3306
- speaker_embedding: optional<string>
3307
- reference_uri: optional<string>
3308
- reference_audio_format: optional<string>
3309
- clone_reference_uri: optional<string>
3310
- clone_reference_audio_format: optional<string>
3311
- reference_tokens: optional<string>
3312
- reference_atoks: optional<string>
3313
- reference_decoder_dtoks: optional<string>
3314
- reference_text: optional<string>
3315
- signed_preview_reference_uri: optional<ReturnSignedUri>
3316
- signed_clone_reference_uri: optional<ReturnSignedUri>
3317
- image_uri: optional<string>
3318
- disabled: optional<boolean>
3319
- source:
3320
- openapi: evi-openapi.json
3321
- ReturnVoiceOctaveShared:
3322
- docs: An octave shared voice specification returned from the server
3323
- properties:
3324
- id: optional<string>
3325
- version: optional<integer>
3326
- name: optional<string>
3327
- description: optional<string>
3328
- reference_signed_uri: optional<ReturnSignedUri>
3329
- image_uri: optional<string>
3330
- source:
3331
- openapi: evi-openapi.json
3332
- ReturnSignedUri:
3333
- docs: A signed URI linking to a file in GCS
3334
- properties:
3335
- filename: optional<string>
3336
- method: optional<string>
3337
- signed_uri: optional<string>
3338
- expiration_timestamp_millis: optional<long>
3339
- source:
3340
- openapi: evi-openapi.json
3341
- PostedVoiceProvider:
2885
+ VoiceProvider:
3342
2886
  enum:
3343
2887
  - HUME_AI
3344
2888
  - CUSTOM_VOICE
3345
- docs: >-
3346
- The provider of the voice to use. Supported values are `HUME_AI` and
3347
- `CUSTOM_VOICE`.
3348
- inline: true
3349
2889
  source:
3350
2890
  openapi: evi-openapi.json
3351
- PostedVoice:
3352
- docs: A Voice specification posted to the server
2891
+ VoiceId:
3353
2892
  properties:
2893
+ id:
2894
+ type: string
2895
+ docs: ID of the voice in the `Voice Library`.
3354
2896
  provider:
3355
- type: PostedVoiceProvider
3356
- docs: >-
3357
- The provider of the voice to use. Supported values are `HUME_AI` and
3358
- `CUSTOM_VOICE`.
3359
- name:
3360
- type: optional<string>
3361
- docs: >-
3362
- Specifies the name of the voice to use.
3363
-
3364
-
3365
- This can be either the name of a previously created Custom Voice or
3366
- one of our 8 base voices: `ITO`, `KORA`, `DACHER`, `AURA`, `FINN`,
3367
- `WHIMSY`, `STELLA`, or `SUNNY`.
3368
-
3369
-
3370
- The name will be automatically converted to uppercase (e.g., "Ito"
3371
- becomes "ITO"). If a name is not specified, then a [Custom
3372
- Voice](/reference/empathic-voice-interface-evi/configs/create-config#request.body.voice.custom_voice)
3373
- specification must be provided.
3374
- custom_voice: optional<PostedCustomVoice>
2897
+ type: optional<VoiceProvider>
2898
+ docs: Model provider associated with this Voice ID.
3375
2899
  source:
3376
2900
  openapi: evi-openapi.json
3377
- ReturnVoiceProvider:
3378
- enum:
3379
- - HUME_AI
3380
- - CUSTOM_VOICE
3381
- docs: >-
3382
- The provider of the voice to use. Supported values are `HUME_AI` and
3383
- `CUSTOM_VOICE`.
3384
- inline: true
3385
- source:
3386
- openapi: evi-openapi.json
3387
- ReturnVoice:
3388
- docs: A specific voice specification
2901
+ VoiceName:
3389
2902
  properties:
3390
- provider:
3391
- type: ReturnVoiceProvider
3392
- docs: >-
3393
- The provider of the voice to use. Supported values are `HUME_AI` and
3394
- `CUSTOM_VOICE`.
3395
2903
  name:
3396
- type: optional<string>
3397
- docs: >-
3398
- The name of the specified voice.
3399
-
3400
-
3401
- This will either be the name of a previously created Custom Voice or
3402
- one of our 8 base voices: `ITO`, `KORA`, `DACHER`, `AURA`, `FINN`,
3403
- `WHIMSY`, `STELLA`, or `SUNNY`.
3404
- custom_voice: optional<ReturnCustomVoice>
2904
+ type: string
2905
+ docs: Name of the voice in the `Voice Library`.
2906
+ provider:
2907
+ type: optional<VoiceProvider>
2908
+ docs: Model provider associated with this Voice Name.
2909
+ source:
2910
+ openapi: evi-openapi.json
2911
+ VoiceRef:
2912
+ discriminated: false
2913
+ union:
2914
+ - type: VoiceId
2915
+ - type: VoiceName
3405
2916
  source:
3406
2917
  openapi: evi-openapi.json
@@ -551,7 +551,7 @@ service:
551
551
  docs: >-
552
552
  Fetches a paginated list of audio for each **Chat** within the specified
553
553
  **Chat Group**. For more details, see our guide on audio reconstruction
554
- [here](/docs/empathic-voice-interface-evi/faq#can-i-access-the-audio-of-previous-conversations-with-evi).
554
+ [here](/docs/speech-to-speech-evi/faq#can-i-access-the-audio-of-previous-conversations-with-evi).
555
555
  source:
556
556
  openapi: evi-openapi.json
557
557
  path-parameters:
@@ -475,7 +475,7 @@ service:
475
475
  docs: >-
476
476
  Fetches the audio of a previous **Chat**. For more details, see our
477
477
  guide on audio reconstruction
478
- [here](/docs/empathic-voice-interface-evi/faq#can-i-access-the-audio-of-previous-conversations-with-evi).
478
+ [here](/docs/speech-to-speech-evi/faq#can-i-access-the-audio-of-previous-conversations-with-evi).
479
479
  source:
480
480
  openapi: evi-openapi.json
481
481
  path-parameters: