Metadata-Version: 2.1
Name: athena_lab1
Version: 0.9.0
Summary: Auto-detects datasets and answers questions using DeepSeek via OpenRouter.
Author-email: Sammy <your.email@example.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: openai
Requires-Dist: pandas
Requires-Dist: python-dotenv

# Athena Lab1

Auto-detects datasets and answers questions using OpenRouter (free tier).

## Setup

Set your OpenRouter API key:

In Jupyter:
os.environ['OPENROUTER_API_KEY'] = 'your-key-here'

In R Studio:
Sys.setenv(OPENROUTER_API_KEY = 'your-key-here')

## Usage (Jupyter)

from athena_lab1.core import ask
ask("What is machine learning?", file_path="Car_Sales.csv")

## Usage (R Studio)

library(reticulate)
athena <- import("athena_lab1.core")
athena$ask("What is machine learning?", file_path="Car_Sales.csv")
