Skip to main content

Official Python SDK for HyperNeuron AI services

Project description

hyperneuronai

Official Python SDK for HyperNeuron AI — TTS streaming and AI telephony services.

Install

pip install hyperneuronai

Quick start

import hyperneuronai

client = hyperneuronai.HyperNeuron(
    api_key="hn_key_xxxx",
    base_url="https://ai.hyperneuron.in",
)

# TTS — save to WAV
audio = client.tts.generate("Hello, world!", voice="sanjana")
with open("hello.wav", "wb") as f:
    f.write(audio)

# TTS — stream in real time
for chunk in client.tts.stream("Hello, world!", voice="sanjana"):
    your_speaker.write(chunk)

# One-way outbound call
call = client.telephony.outbound(
    to="+91<10digitIndianNumber>",
    text="Hi! Your order has shipped and arrives tomorrow.",
    voice="sanjana",
)
print(call.call_uuid, call.state)

Async

import asyncio
import hyperneuronai

async def main():
    async with hyperneuronai.AsyncHyperNeuron(api_key="hn_key_xxxx") as client:
        audio = await client.tts.generate("Hello!")
        call  = await client.telephony.outbound(to="+91<10digitIndianNumber>", text="Hi there!")

asyncio.run(main())

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hyperneuronai-0.1.16.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hyperneuronai-0.1.16-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file hyperneuronai-0.1.16.tar.gz.

File metadata

  • Download URL: hyperneuronai-0.1.16.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for hyperneuronai-0.1.16.tar.gz
Algorithm Hash digest
SHA256 25112ba1bdfe882e0813f0ca7dae14013882163d10dd7a407fb6afd08c55fe6f
MD5 7fb3e6bd92081aa925f0580e85f4f24f
BLAKE2b-256 dab031d59616bb0ec46b244931683f6ae8447ef1ae88db13b8b0cafc06bc9ca6

See more details on using hashes here.

File details

Details for the file hyperneuronai-0.1.16-py3-none-any.whl.

File metadata

  • Download URL: hyperneuronai-0.1.16-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for hyperneuronai-0.1.16-py3-none-any.whl
Algorithm Hash digest
SHA256 822c53f5017f05a87b1e1651cb23472c05c7ac74ae34836937dcb665a64e76d3
MD5 b2fd194b2f414cdff8b44875eab8d29e
BLAKE2b-256 a19e86fb79a76e2417a0c72fc8df26d0a4b55d84914000c1ff70020575cf89af

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page