Skip to content

Commit 0aa6039

Browse files
🌿 Fern Regeneration -- June 24, 2025 (#319)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 7aa5f93 commit 0aa6039

19 files changed

Lines changed: 32 additions & 383 deletions

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
__pycache__/
44
dist/
55
poetry.toml
6-
.claude

.mock/definition/empathic-voice/__package__.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2571,10 +2571,12 @@ types:
25712571
properties:
25722572
enabled:
25732573
type: optional<boolean>
2574-
docs: EVI will nudge user after inactivity
2574+
docs: >-
2575+
If true, EVI will 'nudge' the user to speak after a determined
2576+
interval of silence.
25752577
interval_secs:
25762578
type: optional<integer>
2577-
docs: Time interval in seconds after which the nudge will be sent.
2579+
docs: The interval of inactivity (in seconds) before a nudge is triggered.
25782580
source:
25792581
openapi: evi-openapi.json
25802582
PostedTimeoutSpecsInactivity:

.mock/definition/empathic-voice/chat.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,6 @@ channel:
4747
4848
Include this parameter to apply a specific version of an EVI
4949
configuration. If omitted, the latest version will be applied.
50-
enable_context_injection:
51-
type: optional<boolean>
52-
default: true
53-
docs: >-
54-
A flag to enable context injection. Set this query parameter to true to
55-
have EVI inject context into the conversation. This is useful for
56-
scenarios where you want to provide additional information to EVI to
57-
help it better understand the user's request.
5850
event_limit:
5951
type: optional<integer>
6052
docs: >-

.mock/definition/empathic-voice/configs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,13 @@ service:
202202
type: optional<list<optional<root.PostedBuiltinTool>>>
203203
docs: List of built-in tools associated with this Config.
204204
event_messages: optional<root.PostedEventMessageSpecs>
205-
nudges: optional<root.PostedNudgeSpec>
205+
nudges:
206+
type: optional<root.PostedNudgeSpec>
207+
docs: >-
208+
Configures nudges, brief audio prompts that can guide
209+
conversations when users pause or need encouragement to continue
210+
speaking. Nudges help create more natural, flowing interactions
211+
by providing gentle conversational cues.
206212
timeouts: optional<root.PostedTimeoutSpecs>
207213
webhooks:
208214
type: optional<list<optional<root.PostedWebhookSpec>>>
@@ -668,6 +674,7 @@ service:
668674
response:
669675
docs: Success
670676
type: text
677+
status-code: 200
671678
errors:
672679
- root.BadRequestError
673680
examples:

.mock/definition/empathic-voice/prompts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ service:
379379
response:
380380
docs: Success
381381
type: text
382+
status-code: 200
382383
errors:
383384
- root.BadRequestError
384385
examples:

.mock/definition/empathic-voice/tools.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,8 @@ service:
432432
content-type: application/json
433433
response:
434434
docs: Success
435+
type: text
436+
status-code: 200
435437
errors:
436438
- root.BadRequestError
437439
examples:

.mock/fern.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization" : "hume",
3-
"version" : "0.64.7"
3+
"version" : "0.64.10"
44
}

poetry.lock

Lines changed: 8 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "hume"
33

44
[tool.poetry]
55
name = "hume"
6-
version = "0.9.0"
6+
version = "0.9.1"
77
description = "A Python SDK for Hume AI"
88
readme = "README.md"
99
authors = []
@@ -89,14 +89,6 @@ types-aiofiles = "^24.1.0.20240626"
8989
[tool.pytest.ini_options]
9090
testpaths = [ "tests" ]
9191
asyncio_mode = "auto"
92-
markers = [
93-
"asyncio: Uses async features",
94-
"batch: Uses the Hume batch API",
95-
"service: Authenticates with Hume APIs",
96-
"stream: Uses the Hume streaming API",
97-
"voice: Uses EVI",
98-
"microphone"
99-
]
10092

10193
[tool.mypy]
10294
plugins = ["pydantic.mypy"]

reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3385,7 +3385,7 @@ Hume's eLLM (empathic Large Language Model) is a multimodal language model that
33853385
<dl>
33863386
<dd>
33873387

3388-
**nudges:** `typing.Optional[PostedNudgeSpec]`
3388+
**nudges:** `typing.Optional[PostedNudgeSpec]` — Configures nudges, brief audio prompts that can guide conversations when users pause or need encouragement to continue speaking. Nudges help create more natural, flowing interactions by providing gentle conversational cues.
33893389

33903390
</dd>
33913391
</dl>

0 commit comments

Comments
 (0)