Within the quickly evolving panorama of software program improvement, the intersection of synthetic intelligence, knowledge validation, and database administration has opened up unprecedented potentialities. This weblog publish explores an modern strategy to SQL-code technology and SQL code clarification utilizing the Newest PydanticAI Framework and Google’s Gemini-1.5 mannequin, demonstrating how cutting-edge AI applied sciences can streamline and improve database question improvement.
For builders, knowledge scientists, and knowledge analysts, this exploration provides a glimpse into the way forward for clever code technology from pure language processing, the place complicated database queries will be created with ease and accuracy.
Studying Aims
- Perceive the basics of Pydantic and PydanticAI.
- Learn to implement an AI-powered SQL code technology system.
- Discover the capabilities of Gemini-1.5-Flash in pure language for SQL translation.
- Achieve perception into constructing clever AI brokers for database interactions.
This text was printed as part of the Knowledge Science Blogathon.
What’s PydanticAI?
PydanticAI is a robust Python library that revolutionizes knowledge validation and kind checking. It offers a declarative strategy to defining knowledge fashions, making it simple to create and validate complicated knowledge constructions.
Essential options of Pydantic embrace:
Customization
- Validates a variety of knowledge sorts, together with primitive sorts and complicated nested constructions.
- Helps practically any Python object for validation and serialization
Flexibility
Permits management over knowledge validation strictness:
- Coerce knowledge to the anticipated kind
- Implement strict type-checking when wanted
Serialization
- Help seamless conversion between Pydantic object, dictionary, and JSON.
- Allows self-documenting APIs and compatibility with instruments that use JSON schema.
Efficiency
- Core validation logic is written in Rust for distinctive pace and effectivity.
- Ultimate for high-throughput purposes like scalable REST APIs.
Ecosystem
- Extensively utilized in well-liked Python libraries similar to FastAPI, Langchain, LlamaIndex, and lots of extra.
- Trendy Agentic LLM can’t be applied with out Pydantic.
Examples of PydanticAI in Motion
PydanticAI simplifies knowledge validation and type-checking in Python, making it a robust instrument for creating sturdy knowledge fashions. Let’s discover some sensible examples that showcase its capabilities.
Primary Knowledge Validation
from pydantic import BaseModel
class Person(BaseModel):
title: str
age: int
# Legitimate knowledge
consumer = Person(title="Alice", age=30)
print(consumer)
print("=====================================")
# Invalid knowledge (age is a string)
attempt:
consumer = Person(title="Alice", age="thirty")
besides Exception as e:
print(e)
The above code defines a Person mannequin utilizing Pydantic’s BaseModel, implementing title as a string and age as an integer. It validates right knowledge however raises a validation error when invalid knowledge(a string for age) is offered.
Output:
Auto Sort Coercion
from pydantic import BaseModel
class Product(BaseModel):
worth: float
amount: int
# Knowledge with mismatched sorts
product = Product(worth="19.99", amount="5")
print(product)
print(kind(product.worth))
print(kind(product.amount))
Right here, the Product mannequin with worth as float and amount as an integer. Pydantic robotically coerces string inputs (“19.99” and “5”) into the right sorts (float and int), demonstrating its kind conversion characteristic.
Output:
Nested Mannequin
from pydantic import BaseModel
class Tackle(BaseModel):
avenue: str
metropolis: str
class Person(BaseModel):
title: str
tackle: Tackle
# Legitimate knowledge
consumer = Person(title="Bob", tackle={"avenue": "123 Major St", "metropolis": "Wonderland"})
print(consumer)
# Entry nested attributes
print(consumer.tackle.metropolis)
Right here, We outline a nested Person mannequin containing an Tackle mannequin. Pydantic permits nested validation and auto-converts dictionaries into fashions. Legitimate knowledge initializes a Person object, and you may entry nested attributes like ‘consumer.tackle.metropolis’ instantly.
Output:
Validation with Customized Rule
from pydantic import BaseModel, Subject, field_validator
class Person(BaseModel):
title: str
age: int = Subject(..., gt=0, description="Age should be higher than zero")
@field_validator("title")
def name_must_be_non_empty(cls, worth):
if not worth.strip():
elevate ValueError("Title can't be empty")
return worth
# Legitimate knowledge
consumer = Person(title="Charlie", age=25)
print(consumer)
# invalid knowledge
attempt:
consumer = Person(title=" ", age=-5)
besides Exception as e:
print(e)
Right here, We outline a Person mannequin with a validation rule, age should be higher than 0, and the title can’t be empty (validated through the name_must_be_non_empty technique). Legitimate knowledge creates a Person occasion, whereas invalid knowledge (empty title or destructive age) raises detailed validation errors, demonstrating Pydantic’s validation capabilities.
Output:
These are a few of the core examples of Pydantic I hope they assist you to know the fundamental precept of Knowledge Validation.
What’s an AI Agent?
AI brokers are clever methods designed to autonomously carry out duties, make choices, and work together with their setting to realize particular targets. These brokers usually are not new however latest fast improvement in generative AI and mixing it with brokers makes Agentic software program improvement on new period. Now, brokers can course of inputs, execute actions, and adapt dynamically. Their habits mimics human-like problem-solving, enabling them to operate in varied domains with minimal human intervention.
What’s Agentic Workflow?
An agentic workflow refers back to the constructions, goal-driven sequence of duties managed and executed by one or a number of AI brokers. Unline inflexible conventional workflow, agentic workflow reveals adaptability, autonomy, and context-awareness. AI brokers inside these workflows can independently make choices, delegate subtasks, and study from suggestions, resulting in environment friendly and optimized outcomes.
Trendy Utilization of AI Brokers and Agentic Workflows
The combination of AI brokers and agentic workflows has revolutionized industries by automating complicated duties, enhancing decision-making, and driving effectivity. These clever methods adapt dynamically, enabling smarter options throughout numerous domains.
Enterprise Automation
AI brokers automate repetitive duties like buyer help by way of chatbots, e mail administration, and gross sales pipeline optimization. They improve productiveness by releasing up human sources from higher-value duties.
Software program Growth
AI-powered brokers speed up software program lifecycles by producing, testing, and debugging code, thereby decreasing improvement time and human error.
Healthcare
AI brokers help in medical prognosis, affected person monitoring, and remedy personalization, bettering healthcare supply and operational effectivity.
Finance
Agentic workflows in monetary methods automate fraud detection, danger assessments, and funding evaluation, enabling sooner and extra dependable decision-making.
E-Commerce
Intelligence companies improve personalization in buying experiences, optimizing product suggestions and customer support.
The rise of AI brokers and agentic workflows signifies a shift towards extremely autonomous methods able to managing complicated processes. Their adaptability and studying capabilities make them indispensable for contemporary industries, driving innovation, scalability, and effectivity throughout domains. As AI continues to evolve, AI brokers will additional combine into our every day workflows, reworking how duties are managed and executed.
What’s the PydanticAI Framework?
PydanticAI is a Python Agent framework developed by the creator of Pydantic, FastAPI to streamline the development of production-grade purposes using Generative AI, It emphasizes kind security, model-agnostic design, and seamless integration with massive language fashions (LLMs).
Key options PydanticAI contains:
- Mannequin-Agnostic Help: PydanticAI is appropriate with varied fashions, together with OpenAI, Antropic, Gemini, Groq, Mistral, and Ollama, with a simple interface to include extra fashions.
- Sort-safety: Leveraging Python’s kind methods and Pydantic’s validations, PydanticAI ensures sturdy and scalable agent improvement.
- Dependency Injection System: It introduces a novel, ty-safe dependency injection mechanism, enhancing testing and evaluation-driven improvement.
- Structured Response Validation: Using Pydantic’s validation capabilities, ensures correct and dependable construction responses.
- Logfire Integration: Presents integration with Pydantic Logfire for enhanced debugging and monitoring of LLm-powered purposes.
Here’s a minimal instance of PydanticAI:
import os
from pydantic_ai import Agent
from pydantic_ai.fashions.gemini import GeminiModel
from dotenv import load_dotenv
load_dotenv()
gemini_api_key = os.getenv("<GOOGLE_API_KEY>")
mannequin = GeminiModel(
"gemini-1.5-flash",
api_key=gemini_api_key,
)
agent = Agent(
mannequin=mannequin,
system_prompt="Be concise, reply with one sentence.",
)
end result = agent.run_sync('The place does "whats up world" come from?')
print(end result.knowledge)
Output:
Now it’s time to do some actual stuff. We’ll construct a Postgres SQL Question Technology utilizing the PydanticAI Agent Framework.
Getting Began with Your Venture
Lay the muse on your challenge with a step-by-step information to organising the important instruments and setting.
Setting Surroundings
We’ll create a conda setting for the challenge.
#create an env
$ conda create --name sql_gen python=3.12
# activate the env
$ conda activate sql_gen
Now, create a challenge folder
# create a folder
$ mkdir sql_code_gen
# grow to be the folder
$ cd sql_code_gen
Set up Postgres and Load Database
To put in the Postgres, psql-command-tools, and pgadmin-4, Simply go to EDB obtain your installer on your methods, and set up all of the instruments in a single go.
Now obtain the dvdrental database from right here and to load it to Postgres observe these steps
Step1: Open your terminal
psql -U postgres
# It should ask for a password put it
Step2: Create a database
# Within the postgres=#
CREATE DATABASE dvdrental;
Step3: Command for Terminal
Now, exit the psql command after which kind within the terminal
pg_restore -U postgres -d dvdrental D:/sampledb/postgres/dvdrental.tar
Step4: Connecing to psql
Now, Connect with the psql and verify in case your database is loaded or not.
psql -U postgres
# Join with dvdrental
c dvdrental
# let's have a look at the tables
dt
Output:
For those who see the above tables then you’re okay. We’re all set to begin our essential challenge.
Now Set up the mandatory Python libraries into the sql_gen conda env.
conda activate sql_gen
# set up libraries
pip set up pydantic asyncpg asyncio pydantic-ai
pip set up python-dotenv fastapi google-generativeai
pip set up devtools annotated-types type-extensions
Venture Construction
Our challenge has 4 recordsdata specifically essential, fashions, service, and schema.
sql_query_gen/
|
|--main.py
|--models.py
|--schema.py
|--service.py
|--.env
|--__init__.py
|--.gitignore
Step-by-Step Information to Implementing Your Venture
Dive into the detailed steps and sensible methods to convey your challenge from idea to actuality with this complete implementation information.
Pydantic Fashions
We’ll begin by creating knowledge fashions within the fashions.py file
from dataclasses import dataclass
from typing import Annotated
import asyncpg
from annotated_types import MinLen
from pydantic import BaseModel, Subject
@dataclass
class Deps:
conn: asyncpg.Connection
class Success(BaseModel):
sql_query: Annotated[str, MinLen(1)]
clarification: str = Subject("", description="Clarification of the SQL question, as markdown")
class InvalidRequest(BaseModel):
error_message: str
Within the above code,
- The Deps class manages database connection dependencies. @dataclass robotically generates particular strategies like __init__ and __repr__. Conn is typed as `asyncpg.Connection` and represents an lively PostgreSQL connection. This design follows dependency injection patterns, making the code extra testable and maintainable.
- The Success Class represents a profitable SQL-query technology, sql_query should be a non-empty string (MinLen(1)) and use Annotated so as to add validation constraints. The clarification is an Non-compulsory discipline with a default empty string.
- The InvalidRequest class is the Error Response Mannequin, representing failed SQL-query technology makes an attempt.
This code established the muse for Database connectivity administration, enter validation, Structured response dealing with, and Error dealing with.
Service module
Now, we are going to implement the PydanticAI companies for SQL technology within the service module.
Import library and Configuration
import os
from typing import Union
from dotenv import load_dotenv
import asyncpg
from typing_extensions import TypeAlias
from pydantic_ai import Agent, ModelRetry, RunContext
from pydantic_ai.fashions.gemini import GeminiModel
from schema import DB_SCHEMA
from fashions import Deps, Success, InvalidRequest
To configure, create a .env file within the challenge root and put your Gemini API key there
# .env
GEMINI_API_KEY="asgfhkdhjy457gthjhajbsd"
Then within the service.py file:
load_dotenv()
gemini_api_key = os.getenv("GOOGLE_API_KEY")
It should load the Google API key from the `.env` file.
Creating mannequin and Agent
Response: TypeAlias = Union[Success, InvalidRequest]
mannequin = GeminiModel(
"gemini-1.5-flash",
api_key=gemini_api_key,
)
agent = Agent(
mannequin,
result_type=Response, # kind: ignore
deps_type=Deps,
)
- First Outline a Response kind that may be both Success or InvalidRequest
- Initializes the Gemini 1.5 Flash mannequin with API key
- Create a PydanticAI agent with the desired response and dependency sorts
System Immediate Definition
Now we are going to outline the system immediate for our SQL question technology.
@agent.system_prompt
async def system_prompt() -> str:
return f"""
Given the next PostgreSQL desk of information, your job is to
write a SQL question that fits the consumer's request.
Database schema:
{DB_SCHEMA}
Instance
request: Discover all movies with a rental charge higher than $4.00 and a score of 'PG'
response: SELECT title, rental_rate
FROM movie
WHERE rental_rate > 4.00 AND score = 'PG';
Instance
request: Discover the movie(s) with the longest size
response: SELECT title, size
FROM movie
WHERE size = (SELECT MAX(size) FROM movie);
Instance
request: Discover the typical rental period for movies in every class
response: SELECT c.title, AVG(f.rental_duration) AS average_rental_duration
FROM class c
JOIN film_category fc ON c.category_id = fc.category_id
JOIN movie f ON fc.film_id = f.film_id
GROUP BY c.title
ORDER BY average_rental_duration DESC;
"""
Right here, we outline the bottom context for the AI mannequin and supply instance queries to information the mannequin’s responses. We additionally embrace the database schema info within the mannequin in order that the mannequin can analyze the schema and generate a greater response.
Response Validation
To make the response from the AI mannequin error-free and as much as the initiatives necessities, we simply validate the responses.
@agent.result_validator
async def validate_result(ctx: RunContext[Deps], end result: Response) -> Response:
if isinstance(end result, InvalidRequest):
return end result
# gemini typically provides extraneos backlashes to SQL
end result.sql_query = end result.sql_query.change("", " ")
if not end result.sql_query.higher().startswith("SELECT"):
elevate ModelRetry("Please create a SELECT question")
attempt:
await ctx.deps.conn.execute(f"EXPLAIN {end result.sql_query}")
besides asyncpg.exceptions.PostgresError as e:
elevate ModelRetry(f"Invalid SQL: {e}") from e
else:
return end result
Right here, we are going to validate and course of the generated SQL queries
Key validation steps:
- Returns instantly if the result’s an InvalidRequeste, clear up the additional backslashes
- Make sure the question is a SELECT assertion
- Validates SQL syntax utilizing PostgreSQL EXPLAIN
- Increase ModelRetry for invalid queries
Database Schema
To get your database schema, Open the pgadmin4 you have got put in throughout Postgres setup, Go to the `dvdrental` database, right-click on it, and click on `ERD for Database`.
You’re going to get the beneath ERD diagram, now generate SQL from the ERD (see the spherical black marking on the picture).
Copy the Schema to the Schema.py module:
# schema.py
DB_SCHEMA = """
BEGIN;
CREATE TABLE IF NOT EXISTS public.actor
(
actor_id serial NOT NULL,
first_name character various(45) COLLATE pg_catalog."default" NOT NULL,
last_name character various(45) COLLATE pg_catalog."default" NOT NULL,
last_update timestamp with out time zone NOT NULL DEFAULT now(),
CONSTRAINT actor_pkey PRIMARY KEY (actor_id)
);
.
.
.
.
.
.
"""
The above code block is Closely truncated, to get full code please go to the Venture Repo.
Now, that every one needed modules have been accomplished, time to implement the principle technique and take a look at.
Implementing Major
We’ll do the Major operate definition and immediate dealing with.
import asyncio
import os
import sys
from typing import Union
from dotenv import load_dotenv
import asyncpg
from devtools import debug
from typing_extensions import TypeAlias
from pydantic_ai import Agent
from pydantic_ai.fashions.gemini import GeminiModel
from fashions import Deps, Success, InvalidRequest
load_dotenv()
gemini_api_key = os.getenv("GOOGLE_API_KEY")
Response: TypeAlias = Union[Success, InvalidRequest]
mannequin = GeminiModel(
"gemini-1.5-flash",
api_key=gemini_api_key,
)
agent = Agent(
mannequin,
result_type=Response, # kind: ignore
deps_type=Deps,
)
async def essential():
if len(sys.argv) == 1:
immediate = "Please create a SELECT question"
else:
immediate = sys.argv[1]
# connection to database
conn = await asyncpg.join(
consumer="postgres",
password="avizyt",
host="localhost",
port=5432,
database="dvdrental",
)
attempt:
deps = Deps(conn)
end result = await agent.run(immediate, deps=deps)
end result = debug(end result.knowledge)
print("=========Your Question=========")
print(debug(end result.sql_query))
print("=========Clarification=========")
print(debug(end result.clarification))
lastly:
await conn.shut()
if __name__ == "__main__":
asyncio.run(essential())
Right here, first, outline an asynchronous essential operate, and verify the command-line argument for shopper question. If no args are offered, use the default immediate.
Then we set the Postgres connection parameters to attach with dvdrental database service.
Within the attempt block, create a Deps occasion with a database connection, run the AI brokers with the immediate, Processes the outcomes utilizing the debug operate (pip set up devtools). Then prints the formatted output together with the Generated SQL question and clarification of the question. after that, we lastly closed the database connection.
Now run the principle module like beneath:
# within the terminal
python essential.py " Get the full variety of leases for every buyer"
Output:
After testing the SQL question within the pgadmin4:
Wow! It’s working like we wish. Check extra queries like this and benefit from the studying.
Conclusion
This challenge represents a major step ahead in making database interactions extra intuitive and accessible. By combining the facility of AI with sturdy software program engineering ideas, we’ve created a instrument that not solely generates SQL queries however does so in a manner that’s safe, academic, and sensible for real-world use.
The success of this implementation demonstrates the potential for AI to reinforce quite than change conventional database operations, offering a useful instrument for each studying and productiveness.
Venture Repo – All of the code used on this challenge is on the market right here.
Key Takeaways
- PydanticAI permits clever, context-aware code technology.
- Gemini-1.5-Flash offers superior pure language understanding for technical duties.
- AI brokers can remodel how we work together with databases and generate code.
- Sturdy validation is essential in AI-generated code methods.
Often Requested Questions
A. PydanticAI provides type-safe, validated code technology with built-in error checking and contextual understanding.
A. Gemini mannequin offers superior pure language processing, translating complicated human queries into exact SQL statements.
A. Completely! The structure will be tailored for code technology, knowledge transformation, and clever automation throughout varied domains.
The media proven on this article just isn’t owned by Analytics Vidhya and is used on the Creator’s discretion.