Metadata-Version: 2.1
Name: athena_lab1
Version: 0.5.0
Summary: Auto-detects datasets and answers questions using Hugging Face (no API key needed).
Author-email: Sammy <your.email@example.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pandas
Requires-Dist: openpyxl

# Athena Lab1

Auto-detects datasets and answers questions using Hugging Face (no API key needed).

## Features

- No API key required
- Auto-detects CSV, Excel, JSON, TSV, Parquet files
- Works with or without a dataset
- Free to use (Hugging Face inference)

## Installation

pip install athena_lab1

## Usage

from athena_lab1.core import ask

# Without a dataset
ask("What is machine learning?")

# With a dataset (auto-detected)
ask("Build a machine learning model", file_path="Car_Sales.csv")

## Supported Formats

- CSV (.csv)
- Excel (.xlsx, .xls)
- JSON (.json)
- TSV (.tsv)
- Parquet (.parquet)
