Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .mock/definition/empathic-voice/__package__.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1531,12 +1531,12 @@ types:
Version numbers are integer values representing different iterations
of the Config. Each update to the Config increments its version
number.
tools:
type: optional<list<optional<ReturnUserDefinedTool>>>
docs: List of user-defined tools associated with this Config.
version_description:
type: optional<string>
docs: An optional description of the Config version.
tools:
type: optional<list<optional<ReturnUserDefinedTool>>>
docs: List of user-defined tools associated with this Config.
language_model:
type: optional<ReturnLanguageModel>
docs: >-
Expand Down
25 changes: 25 additions & 0 deletions .mock/definition/tts/streamInput.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,31 @@ channel:
type: optional<boolean>
default: false
docs: If enabled, no binary websocket messages will be sent to the client.
access_token:
type: optional<string>
default: ''
docs: >-
Access token used for authenticating the client. If not provided, an
`api_key` must be provided to authenticate.


The access token is generated using both an API key and a Secret key,
which provides an additional layer of security compared to using just an
API key.


For more details, refer to the [Authentication Strategies
Guide](/docs/introduction/api-key#authentication-strategies).
api_key:
type: optional<string>
default: ''
docs: >-
API key used for authenticating the client. If not provided, an
`access_token` must be provided to authenticate.


For more details, refer to the [Authentication Strategies
Guide](/docs/introduction/api-key#authentication-strategies).
messages:
publish:
origin: client
Expand Down
33 changes: 16 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hume"

[tool.poetry]
name = "hume"
version = "0.11.6"
version = "0.11.7"
description = "A Python SDK for Hume AI"
readme = "README.md"
authors = []
Expand Down
Loading