AI-powered Python framework for tabular data enrichment and analysis using LLMs. Features include intelligent feature engineering, natural language data analysis, and AI agents for automated workflows.
Project description
Augini 🤖
🎯 What is Augini?
Augini is an AI-powered Python framework for tabular data enrichment and analysis. It leverages Large Language Models (LLMs) to:
- Generate meaningful features from your data
- Provide natural language data analysis
- Create AI agents for automated data workflows
🚀 Quick Start
pip install augini
from augini import DataEngineer, DataAnalyzer
import pandas as pd
# Sample customer data
df = pd.DataFrame({
'CustomerID': ['C001', 'C002'],
'Age': [25, 45],
'MonthlyCharges': [50.0, 75.0]
})
# Initialize with your API key (supports OpenAI, OpenRouter, Azure)
engineer = DataEngineer(
api_key="your-api-key",
model="gpt-4o-mini", # Use OpenRouter's GPT-4
base_url="https://openrouter.ai/api/v1" # Optional: use OpenRouter
)
# Generate customer insights
df = engineer.generate_features(
df=df,
new_feature_specs=[
{
'new_feature_name': 'CustomerSegment',
'new_feature_description': 'Classify customer segment based on age and spending',
'output_type': 'category',
'constraints': {'categories': ['Premium', 'Regular', 'Budget']}
},
{
'new_feature_name': 'ChurnRisk',
'new_feature_description': 'Calculate churn risk score (0-100)',
'output_type': 'float',
'constraints': {'min': 0, 'max': 100}
}
]
)
# Initialize analyzer for natural language insights
analyzer = DataAnalyzer(
api_key="your-api-key",
model="gpt-4o-mini",
enable_memory=True # Enable conversation context
)
# Fit data and ask questions
analyzer.fit(df)
insights = analyzer.chat("What patterns do you see in customer segments?")
print(insights)
🎁 Key Features
🔄 DataEngineer
- Feature Generation: Create meaningful features using AI
- Data Augmentation: Enrich datasets with synthetic data
- Custom Constraints: Control output formats and ranges
- Batch Processing: Handle large datasets efficiently
📊 DataAnalyzer
- Natural Language Analysis: Ask questions about your data
- Pattern Detection: Uncover hidden trends and correlations
- Memory Context: Build on previous analysis
- Visualization Integration: Generate plots and charts
🤖 AI Agents
- Automated Workflows: Create agents for repetitive tasks
- Custom Behaviors: Define agent goals and constraints
- Chain Actions: Connect multiple agents for complex workflows
🌐 Provider Agnostic
Augini works with multiple LLM providers:
- OpenAI
- OpenRouter
- Azure OpenAI
- Anthropic (coming soon)
🤝 Contributing
We welcome contributions!
📜 License
Augini is released under the MIT License.
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
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 augini-0.3.3.tar.gz.
File metadata
- Download URL: augini-0.3.3.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d188fce9d165b7ddedbc5a62a4767731a265ecd6147522ee607ae74e9e086ab
|
|
| MD5 |
07f37908ff74b7e2f06b9b4599dfebcd
|
|
| BLAKE2b-256 |
acc6f78e1561d307e23fd69f1ab82e01f7d7516223bb9b9b6f5508eae40cd6be
|
File details
Details for the file augini-0.3.3-py3-none-any.whl.
File metadata
- Download URL: augini-0.3.3-py3-none-any.whl
- Upload date:
- Size: 17.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8944085bdfd2926be4f1890b5377055f1d2e972b8adcf0081c00c0545e75757b
|
|
| MD5 |
f75f440162ccf0460ef3724b874873c3
|
|
| BLAKE2b-256 |
b759bac18f7a034525b259fa890719241e5b688c2123f1b9fe3aab1e3b39e9dc
|