We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: cannot import name 'HumeVoiceClient' from partially initialized module 'hume' (most likely due to a circular import)
from hume import HumeVoiceClient, MicrophoneInterface
HUME_API_KEY = <YOUR_API_KEY>
client = HumeVoiceClient(HUME_API_KEY)
async with client.connect(config_id="") as socket: await MicrophoneInterface.start(socket)
The text was updated successfully, but these errors were encountered:
HUME-8629 cannot import name 'HumeVoiceClient
Sorry, something went wrong.
No branches or pull requests
ImportError: cannot import name 'HumeVoiceClient' from partially initialized module 'hume' (most likely due to a circular import)
from hume import HumeVoiceClient, MicrophoneInterface
avoid hard coding your API key, retrieve from environment variables
HUME_API_KEY = <YOUR_API_KEY>
Connect and authenticate with Hume
client = HumeVoiceClient(HUME_API_KEY)
establish a connection with EVI with your configuration by passing
the config_id as an argument to the connect method
async with client.connect(config_id="") as socket:
await MicrophoneInterface.start(socket)
The text was updated successfully, but these errors were encountered: