Skip to main content

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 🤖

augini logo

PyPI version Downloads Documentation Discord Twitter Follow Last Commit Hugging Face

🎯 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

augini-0.3.2.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

augini-0.3.2-py3-none-any.whl (17.2 kB view details)

Uploaded Python 3

File details

Details for the file augini-0.3.2.tar.gz.

File metadata

  • Download URL: augini-0.3.2.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for augini-0.3.2.tar.gz
Algorithm Hash digest
SHA256 031d1235f3a3567d740210edfc2ada7c2affdf5edb3bf275262ca7cb254e225c
MD5 e0542b94ae1173b95e60c31bc2af5e02
BLAKE2b-256 2b20ce8936dbb27f4c9326a5906c5a6dd1645a6bfb11a7d51d4d4ee4a3143b84

See more details on using hashes here.

File details

Details for the file augini-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: augini-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for augini-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ef3571c5cb6105481f60c5936938081ff577dbfcf9b037d995f25280bb2b99b2
MD5 a03e47bc0ab705f48471717ab68d50cc
BLAKE2b-256 dec3f520ce940fe9023d10e245ed718decf6cfc2c0cdf488da82bf4ed2a5cadb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page