A minimal Python project to experiment with Large Language Models (LLMs).
This repo provides a lightweight starting point for making API calls to LLMs, analyzing outputs, and logging results.
LLM/ ├── .env # Environment variables (ignored in Git) ├── app.py # Main entry point ├── call_analysis.csv # Logs of past API calls ├── requirements.txt # Python dependencies └── README.md # Project documentation
- Python 3.8+
- An API key for the LLM provider (e.g., OpenAI)
Clone the repository:
git clone https://github.com/Manaskashy/LLM.git
cd LLM
Set up a virtual environment:
python -m venv venv
source venv/bin/activate # Linux / macOS
venv\Scripts\activate # Windows