git clone -b main https://github.com/teloryfrozy/llm-benchmark
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
MISTRAL_API_KEY="Your Mistral API Key"
OPENAI_API_KEY="Your OpenAI API Key"
ANTHROPIC_API_KEY="Your Anthropic API Key"
GEMINI_API_KEY="Your Gemini API Key"
LLM_MODELS = {
"openai": ["gpt-4o-mini"],
"anthropic": ["claude-3-5-haiku-latest"],
"gemini": ["gemini-1.5-flash"],
"mistral": ["mistral-small-latest"],
}
ROLES = ["user", "assistant", "system"]
PROMPT = "How to advertise a SaaS with a budget of $1000 in 3 key sentences?"
python3 main.py