a clone from the root project for Ryoma AI Platform – made compatible with Pydantic v2
Project description
Ryoma Nicer
A Pydantic v2–compatible fork of Ryoma AI Platform
Overview
Ryoma Nicer is a community-maintained fork of the Ryoma AI Platform designed to ensure compatibility with Pydantic v2. The original Ryoma provides an AI-powered data agent framework for seamless data analysis, engineering, and visualization. This fork:
- Upgrades internal data models to use Pydantic v2 APIs
- Preserves feature parity with the upstream Ryoma project
- Offers a drop-in replacement package (
ryoma-nicer) for users on Pydantic v2
For the original project, see project-ryoma/ryoma. Thanks to the upstream maintainers for their work!
Why This Fork?
Pydantic v2 introduced breaking changes in how models are defined and validated. Many projects, including Ryoma AI Platform, were tightly coupled to Pydantic v1. To allow developers to adopt the latest Pydantic improvements without sacrificing Ryoma functionality, this fork:
- Migrates all `` model definitions to the new
BaseModelAPI in v2. - Updates validation logic to leverage v2’s faster runtime and stricter type checks.
- **Releases under **`` as a PyPI package, ensuring it can be installed alongside Pydantic v2.
Installation
Install the Pydantic v2–compatible release from PyPI:
pip install ryoma-nicer
Optionally, include supported data source extras:
pip install "ryoma-nicer[snowflake,pyspark,postgres,sqlite,mysql,bigquery]"
Usage
The API surface and usage mirror the original Ryoma. For example, to run a simple SQL agent:
from ryoma_ai.agent.sql import SqlAgent
from ryoma_ai.datasource.postgres import PostgresDataSource
# Initialize data source
datasource = PostgresDataSource("postgresql://user:pass@host:5432/db")
# Create and run SQL agent
agent = SqlAgent("gpt-3.5-turbo").add_datasource(datasource)
agent.stream("SELECT count(*) FROM orders", display=True)
See the Ryoma Nicer documentation for full examples.
Contribution & Upstream
- Forked from: project-ryoma/ryoma
- Issue tracker & pull requests: Please use this repository to report Pydantic v2 compatibility issues or propose improvements.
License
This project is released under the Apache License 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ryoma_nicer-0.1.3.tar.gz.
File metadata
- Download URL: ryoma_nicer-0.1.3.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bc3259a64f35d80a6cdaa90486eb614886aef9341c5c4550d2e19dc6285a8cc
|
|
| MD5 |
e3ba213778588081ed1e8864a6802bf4
|
|
| BLAKE2b-256 |
feb3a0b0f4e91ae4dbe522a1ba3007f8a3f2dd003e731a85f3fdffcc52467baa
|
File details
Details for the file ryoma_nicer-0.1.3-py3-none-any.whl.
File metadata
- Download URL: ryoma_nicer-0.1.3-py3-none-any.whl
- Upload date:
- Size: 135.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09635e35871522ae0c683e47754b187affb38be57b9be3ec826bf0150cb1dacf
|
|
| MD5 |
ae3592b54243ae900a36c4ca4de0677d
|
|
| BLAKE2b-256 |
d9867aba8f033120185c37aa62901fc1fddfa9986b967dc41760313a9e3aba15
|