RGBMetrics / run_evaluation.py
RGB Evaluation
feat: Add separate grid layout for 4 RAG abilities in Streamlit UI
af25c62
raw
history blame contribute delete
216 Bytes
#!/usr/bin/env python
"""
RGB RAG Evaluation - Main Entry Point
Evaluates LLM abilities for RAG using the RGB benchmark with Groq's free API.
"""
from src.pipeline import main
if __name__ == "__main__":
main()