Ryzenth is a powerful and flexible Python SDK for interacting with the new Ryzenth API V1 a successor to the Ryzenth API V1 supporting both synchronous and asynchronous workflows out of the box.
Note: Ryzenth API V1 (javascript) is still alive and supported, but Ryzenth is the next generation.
- Full support for both
sync
andasync
clients - Built-in API Key management
- Support for modern AI endpoints (image generation, search, text, and more)
- Designed for speed with
httpx
pip install ryzenth[fast]
from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter
ryz = ApiKeyFrom(..., is_ok=True)
await ryz.aio.send_message(
"hybrid",
QueryParameter(
query="hello world!"
)
)
from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter
ryz = ApiKeyFrom(..., is_ok=True)
ryz._sync.send_message(
"hybrid",
QueryParameter(
query="hello world!"
)
)
- Available API key v2 via
@RyzenthKeyBot
You can skip passing the API key directly by setting it via environment:
export RYZENTH_API_KEY=your-api-key
- Built with love by xtdevs
- Inspired by early work on AkenoX API
- Thanks to Google Dev tools for AI integration concepts
You can now access the Ryzenth API V2 (Typescript)