hume-python-sdk
hume-python-sdk copied to clipboard
Python client for Hume AI
when I run evi-python-example, I always get 403 websockets.exceptions.InvalidStatusCode: server rejected WebSocket connection: HTTP 403 client = HumeVoiceClient(api_key=HUME_API_KEY) client = HumeVoiceClient(api_key=access_token) no matter I use HUME_API_KEY(get from https://beta.hume.ai/settings/keys) or access_token...
allow sending a file as bytes to the batch API. Not sure how you feel about merge commits here...I wrote this before the latest release. ``` client = HumeBatchClient(getenv("HUME_API_KEY"), timeout=300)...
I am using the code provided to upload a file on dev.hume.ai, on using the UI I am able to successfully upload a file, but on copying the same code...
In this PR, the Hume Python SDK is regenerated with Fern's python generator. The new SDK provides a single top level client that exports APIs across `expressionMeasurement`, `empathicVoice` and `customModels`....
Bumps [certifi](https://github.com/certifi/python-certifi) from 2024.6.2 to 2024.7.4. Commits bd81538 2024.07.04 (#295) 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294) 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293) e8abcd0 Bump pypa/gh-action-pypi-publish from...
minor fix
Simplify linting toolchain from migrating away from Pylint, isort, and Black to [Ruff](https://github.com/astral-sh/ruff). There are still some minor gaps in terms of full pylint support, so feel free to close...
``` import asyncio from hume import HumeVoiceClient, MicrophoneInterface async def main() -> None: # Paste your Hume API key here HUME_API_KEY = "key" # Connect and authenticate with Hume client...
Hey there! Trying to use the EVI API right now to interface with the voice assistant. Is it possible to interact with the assistant by sending over audio files instead...
Hey there, I'm sending input as text with a "custom_session_id" as part of the payload, like such: ``` data = json.dumps( {"text": prompt, "type": "user_input", "custom_session_id": "testtestest"} ) ``` When...