Metadata-Version: 2.1
Name: kheops
Version: 0.1.2
Summary: A package for generating responses with an LLM and evaluating them on MMLU.
Home-page: https://github.com/yourusername/your_package_name
Author: KHEOPS TEAM
Author-email: dev@kheops.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas==2.0.0
Requires-Dist: tqdm==4.66.5
Requires-Dist: langchain-community==0.2.12
Requires-Dist: langchain==0.2.14

# Import functions from your package
from your_package_name import load_data, eval_mmlu

# Use the load_data function to load your dataset
file_path = 'mmlu.jsonl'  # Replace with the path to your JSONL file
df = load_data(file_path)

# Evaluate your LLM using the eval_mmlu function
eval_mmlu(df)
