Skip to content

Ryzenth is a powerful and flexible Python SDK for interacting with the new Ryzenth API a successor to the AkenoX API supporting both synchronous and asynchronous workflows out of the box.

License

Notifications You must be signed in to change notification settings

TeamKillerX/Ryzenth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ryzenth Library

Open Source Love Maintenance License PRs Welcome Ryzenth - Version pre-commit.ci status

Downloads API Tests

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.

Features

  • Full support for both sync and async clients
  • Built-in API Key management
  • Support for modern AI endpoints (image generation, search, text, and more)
  • Designed for speed with httpx

Installation

pip install ryzenth[fast]

Getting Started

Async Example

from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter

ryz = ApiKeyFrom(..., is_ok=True)

await ryz.aio.send_message(
    "hybrid",
    QueryParameter(
        query="hello world!"
    )
)

Sync Example

from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter

ryz = ApiKeyFrom(..., is_ok=True)
ryz._sync.send_message(
    "hybrid",
    QueryParameter(
        query="hello world!"
    )
)

Environment Variable Support

You can skip passing the API key directly by setting it via environment:

export RYZENTH_API_KEY=your-api-key

Credits

  • Built with love by xtdevs
  • Inspired by early work on AkenoX API
  • Thanks to Google Dev tools for AI integration concepts

License

You can now access the Ryzenth API V2 (Typescript)

About

Ryzenth is a powerful and flexible Python SDK for interacting with the new Ryzenth API a successor to the AkenoX API supporting both synchronous and asynchronous workflows out of the box.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages